diff options
| author | Martin Rudalics | 2008-09-03 09:17:23 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2008-09-03 09:17:23 +0000 |
| commit | 25831d661db4ff1d03310e879e30aae9c24d209f (patch) | |
| tree | b0d7c01b75bcafcbd7eb7980393e628b293af9e0 | |
| parent | dab49a2070c05018c3036f0b68a22f54659270a1 (diff) | |
| download | emacs-25831d661db4ff1d03310e879e30aae9c24d209f.tar.gz emacs-25831d661db4ff1d03310e879e30aae9c24d209f.zip | |
(pop-up-frame-function): Move here from window.el to avoid
"CHANGED outside Customize;".
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/frame.el | 10 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-09-03 Glenn Morris <rgm@gnu.org> | 7 | 2008-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))) | 105 | It 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)) |