diff options
| -rw-r--r-- | etc/NEWS | 1 | ||||
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/window.el | 3 |
3 files changed, 5 insertions, 0 deletions
| @@ -735,6 +735,7 @@ in Emacs 24.1: | |||
| 735 | **** `special-display-frame-alist' | 735 | **** `special-display-frame-alist' |
| 736 | **** `special-display-buffer-names' | 736 | **** `special-display-buffer-names' |
| 737 | **** `special-display-function' | 737 | **** `special-display-function' |
| 738 | **** `display-buffer-function' | ||
| 738 | 739 | ||
| 739 | ** Completion | 740 | ** Completion |
| 740 | 741 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 936a451ccb4..a7538e50d82 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | 2012-09-16 Chong Yidong <cyd@gnu.org> | 1 | 2012-09-16 Chong Yidong <cyd@gnu.org> |
| 2 | 2 | ||
| 3 | * window.el (special-display-popup-frame): Doc fix (Bug#8853). | 3 | * window.el (special-display-popup-frame): Doc fix (Bug#8853). |
| 4 | (display-buffer-function): Mark as obsolete. | ||
| 4 | 5 | ||
| 5 | * progmodes/compile.el (compilation-parse-errors): Accept list | 6 | * progmodes/compile.el (compilation-parse-errors): Accept list |
| 6 | values similar to font-lock-keywords (Bug#12136). Suggested by | 7 | values similar to font-lock-keywords (Bug#12136). Suggested by |
diff --git a/lisp/window.el b/lisp/window.el index d9f3ccbd5c2..fccb68bd94a 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -4551,6 +4551,9 @@ of the window used." | |||
| 4551 | (function :tag "function")) | 4551 | (function :tag "function")) |
| 4552 | :group 'windows) | 4552 | :group 'windows) |
| 4553 | 4553 | ||
| 4554 | (make-obsolete-variable 'display-buffer-function | ||
| 4555 | 'display-buffer-alist "24.3") | ||
| 4556 | |||
| 4554 | ;; Eventually, we want to turn this into a defvar; instead of | 4557 | ;; Eventually, we want to turn this into a defvar; instead of |
| 4555 | ;; customizing this, the user should use a `pop-up-frame-parameters' | 4558 | ;; customizing this, the user should use a `pop-up-frame-parameters' |
| 4556 | ;; alist entry in `display-buffer-base-action'. | 4559 | ;; alist entry in `display-buffer-base-action'. |