diff options
| author | Dan Nicolaescu | 2008-09-21 22:58:41 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-09-21 22:58:41 +0000 |
| commit | d06f8010663c3eacd0fd873f816803a6ffceb692 (patch) | |
| tree | 34da18986fa350ea88e8b7eead38d14fd288d396 | |
| parent | 00c5530674c0ff3bf742ad896ed2266aa63c7ba9 (diff) | |
| download | emacs-d06f8010663c3eacd0fd873f816803a6ffceb692.tar.gz emacs-d06f8010663c3eacd0fd873f816803a6ffceb692.zip | |
(frame-initialize): Remove spurious setting of
special-display-function with the default value.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/frame.el | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1f0c6dd1678..a43dd64ed2e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * frame.el (frame-initialize): Remove spurious setting of | ||
| 4 | special-display-function with the default value. | ||
| 5 | |||
| 1 | 2008-09-20 Vincent Belaïche <vincent.b.1@hotmail.fr> | 6 | 2008-09-20 Vincent Belaïche <vincent.b.1@hotmail.fr> |
| 2 | 7 | ||
| 3 | * calc/calc-vec.el (calcFunc-venum): Properly handle intervals. | 8 | * calc/calc-vec.el (calcFunc-venum): Properly handle intervals. |
diff --git a/lisp/frame.el b/lisp/frame.el index cbf4c9f1372..2c8badf90c2 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -210,9 +210,6 @@ Pass it BUFFER as first arg, and (cdr ARGS) gives the rest of the args." | |||
| 210 | (not noninteractive) | 210 | (not noninteractive) |
| 211 | (not (eq initial-window-system 'pc))) | 211 | (not (eq initial-window-system 'pc))) |
| 212 | (progn | 212 | (progn |
| 213 | ;; Turn on special-display processing only if there's a window system. | ||
| 214 | (setq special-display-function 'special-display-popup-frame) | ||
| 215 | |||
| 216 | ;; If there is no frame with a minibuffer besides the terminal | 213 | ;; If there is no frame with a minibuffer besides the terminal |
| 217 | ;; frame, then we need to create the opening frame. Make sure | 214 | ;; frame, then we need to create the opening frame. Make sure |
| 218 | ;; it has a minibuffer, but let initial-frame-alist omit the | 215 | ;; it has a minibuffer, but let initial-frame-alist omit the |