aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2008-09-03 09:17:23 +0000
committerMartin Rudalics2008-09-03 09:17:23 +0000
commit25831d661db4ff1d03310e879e30aae9c24d209f (patch)
treeb0d7c01b75bcafcbd7eb7980393e628b293af9e0
parentdab49a2070c05018c3036f0b68a22f54659270a1 (diff)
downloademacs-25831d661db4ff1d03310e879e30aae9c24d209f.tar.gz
emacs-25831d661db4ff1d03310e879e30aae9c24d209f.zip
(pop-up-frame-function): Move here from window.el to avoid
"CHANGED outside Customize;".
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/frame.el10
2 files changed, 12 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 75ef6fc72f2..5f518b6fd08 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12008-09-03 Martin Rudalics <rudalics@gmx.at>
2
3 * window.el (pop-up-frame-function): Move ...
4 * frame.el (pop-up-frame-function): ... here, to avoid
5 "CHANGED outside Customize;".
6
12008-09-03 Glenn Morris <rgm@gnu.org> 72008-09-03 Glenn Morris <rgm@gnu.org>
2 8
3 * buff-menu.el (buffer-menu-mode-hook): Add obsolete alias. 9 * buff-menu.el (buffer-menu-mode-hook): Add obsolete alias.
diff --git a/lisp/frame.el b/lisp/frame.el
index ff644c67b2a..5454ac8f58c 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -99,10 +99,12 @@ for pop-up frames."
99 (sexp :tag "Value"))) 99 (sexp :tag "Value")))
100 :group 'frames) 100 :group 'frames)
101 101
102(setq pop-up-frame-function 102(defcustom pop-up-frame-function
103 ;; Using `function' here caused some sort of problem. 103 (lambda () (make-frame pop-up-frame-alist))
104 '(lambda () 104 "Function to call to handle automatic new frame creation.
105 (make-frame pop-up-frame-alist))) 105It is called with no arguments and should return a newly created frame."
106 :type '(choice (const nil) (function :tag "function"))
107 :group 'frames)
106 108
107(defcustom special-display-frame-alist 109(defcustom special-display-frame-alist
108 '((height . 14) (width . 80) (unsplittable . t)) 110 '((height . 14) (width . 80) (unsplittable . t))