aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2009-05-02 08:33:25 +0000
committerMartin Rudalics2009-05-02 08:33:25 +0000
commit36fc09321bce7286ce378c45382a0a4773d69a9d (patch)
tree47c90637ebaf83e6b3d6259c27cd1e2da336c727
parent904454509eccb9465cf72dc57edf6fe6be8dc397 (diff)
downloademacs-36fc09321bce7286ce378c45382a0a4773d69a9d.tar.gz
emacs-36fc09321bce7286ce378c45382a0a4773d69a9d.zip
(pop-up-frame-function): Remove choice nil since it
does not represent a valid value.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/frame.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dc89e0c3ada..64ee5cd4758 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-05-02 Martin Rudalics <rudalics@gmx.at>
2
3 * frame.el (pop-up-frame-function): Remove choice nil since it
4 does not represent a valid value.
5
12009-04-30 David Reitter <david.reitter@gmail.com> 62009-04-30 David Reitter <david.reitter@gmail.com>
2 7
3 * term/ns-win.el (ns-make-command-string, ns-grabenv) 8 * term/ns-win.el (ns-make-command-string, ns-grabenv)
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."
120This function is called with no arguments and should return a new 120This function is called with no arguments and should return a new
121frame. The default value calls `make-frame' with the argument 121frame. The default value calls `make-frame' with the argument
122`pop-up-frame-alist'." 122`pop-up-frame-alist'."
123 :type '(choice (const nil) (function :tag "function")) 123 :type 'function
124 :group 'frames) 124 :group 'frames)
125 125
126(defcustom special-display-frame-alist 126(defcustom special-display-frame-alist