* window.el (special-display-p): Signal an error if BUFFER-NAME
is not a string (Bug#11713).
+2012-06-17 Martin Rudalics <rudalics@gmx.at>
+
+ * window.el (special-display-p): Signal an error if BUFFER-NAME
+ is not a string (Bug#11713).
+
2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
* progmodes/python.el (python-info-beginning-of-backslash):
entry."
(let (tmp)
(cond
- ((not (stringp buffer-name)))
+ ((not (stringp buffer-name))
+ (error "Invalid buffer name %s" buffer-name))
((member buffer-name special-display-buffer-names)
t)
((setq tmp (assoc buffer-name special-display-buffer-names))