"CHANGED outside Customize;".
+2008-09-03 Martin Rudalics <rudalics@gmx.at>
+
+ * window.el (pop-up-frame-function): Move ...
+ * frame.el (pop-up-frame-function): ... here, to avoid
+ "CHANGED outside Customize;".
+
2008-09-03 Glenn Morris <rgm@gnu.org>
* buff-menu.el (buffer-menu-mode-hook): Add obsolete alias.
(sexp :tag "Value")))
:group 'frames)
-(setq pop-up-frame-function
- ;; Using `function' here caused some sort of problem.
- '(lambda ()
- (make-frame pop-up-frame-alist)))
+(defcustom pop-up-frame-function
+ (lambda () (make-frame pop-up-frame-alist))
+ "Function to call to handle automatic new frame creation.
+It is called with no arguments and should return a newly created frame."
+ :type '(choice (const nil) (function :tag "function"))
+ :group 'frames)
(defcustom special-display-frame-alist
'((height . 14) (width . 80) (unsplittable . t))