aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/window.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a06cc0c1209..f5918102f8b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-05-22 Glenn Morris <rgm@gnu.org>
2
3 * window.el (window--dump-frame): Avoid error in --without-x builds.
4
12014-05-21 Glenn Morris <rgm@gnu.org> 52014-05-21 Glenn Morris <rgm@gnu.org>
2 6
3 * nxml/nxml-mode.el (xml-mode): Only define this alias once. 7 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
diff --git a/lisp/window.el b/lisp/window.el
index 60f13e65c4e..21c9b925238 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -1102,7 +1102,9 @@ dumping to it."
1102 (frame-text-width frame) (frame-text-height frame) 1102 (frame-text-width frame) (frame-text-height frame)
1103 (frame-text-cols frame) (frame-text-lines frame)) 1103 (frame-text-cols frame) (frame-text-lines frame))
1104 (format "tool: %s scroll: %s fringe: %s border: %s right: %s bottom: %s\n\n" 1104 (format "tool: %s scroll: %s fringe: %s border: %s right: %s bottom: %s\n\n"
1105 (tool-bar-height frame t) 1105 (if (fboundp 'tool-bar-height)
1106 (tool-bar-height frame t)
1107 "0")
1106 (frame-scroll-bar-width frame) 1108 (frame-scroll-bar-width frame)
1107 (frame-fringe-width frame) 1109 (frame-fringe-width frame)
1108 (frame-border-width frame) 1110 (frame-border-width frame)