diff options
author | Martin Rudalics <rudalics@gmx.at> | 2009-05-02 08:33:25 +0000 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2009-05-02 08:33:25 +0000 |
commit | 36fc09321bce7286ce378c45382a0a4773d69a9d (patch) | |
tree | 47c90637ebaf83e6b3d6259c27cd1e2da336c727 /lisp/frame.el | |
parent | 904454509eccb9465cf72dc57edf6fe6be8dc397 (diff) | |
download | emacs-36fc09321bce7286ce378c45382a0a4773d69a9d.tar.gz emacs-36fc09321bce7286ce378c45382a0a4773d69a9d.tar.bz2 emacs-36fc09321bce7286ce378c45382a0a4773d69a9d.zip |
(pop-up-frame-function): Remove choice nil since it
does not represent a valid value.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 5bdc5821284..534f5f86159 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -120,7 +120,7 @@ affected by this variable." This function is called with no arguments and should return a new frame. The default value calls `make-frame' with the argument `pop-up-frame-alist'." - :type '(choice (const nil) (function :tag "function")) + :type 'function :group 'frames) (defcustom special-display-frame-alist |