aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/window.el2
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fbcff3e97c0..2bd92de45e7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12012-06-18 Martin Rudalics <rudalics@gmx.at>
2
3 * window.el (special-display-p): Completely remove stringp
4 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
5
12012-06-17 Michael Albinus <michael.albinus@gmx.de> 62012-06-17 Michael Albinus <michael.albinus@gmx.de>
2 7
3 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'. 8 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
diff --git a/lisp/window.el b/lisp/window.el
index 62cd226daec..6ea882d1ea2 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -4192,8 +4192,6 @@ or matches BUFFER-NAME, the return value is the cdr of that
4192entry." 4192entry."
4193 (let (tmp) 4193 (let (tmp)
4194 (cond 4194 (cond
4195 ((not (stringp buffer-name))
4196 (error "Invalid buffer name %s" buffer-name))
4197 ((member buffer-name special-display-buffer-names) 4195 ((member buffer-name special-display-buffer-names)
4198 t) 4196 t)
4199 ((setq tmp (assoc buffer-name special-display-buffer-names)) 4197 ((setq tmp (assoc buffer-name special-display-buffer-names))