aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-09-25 01:10:01 +0000
committerKarl Heuer1997-09-25 01:10:01 +0000
commitcb5b843e7276cf164bbd76adafc92f4959ff21dd (patch)
treef1e4116b31f450510cb32434bcc73b6c3612fc20
parenta59f6ba35e94c6232ebb3fb633ca6b13573a0b1e (diff)
downloademacs-cb5b843e7276cf164bbd76adafc92f4959ff21dd.tar.gz
emacs-cb5b843e7276cf164bbd76adafc92f4959ff21dd.zip
(displaying-byte-compile-warnings): Show
entire "Compiling ..." line when recentering.
-rw-r--r--lisp/emacs-lisp/bytecomp.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 390b9d08ee8..e4b45273734 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -10,7 +10,7 @@
10 10
11;;; This version incorporates changes up to version 2.10 of the 11;;; This version incorporates changes up to version 2.10 of the
12;;; Zawinski-Furuseth compiler. 12;;; Zawinski-Furuseth compiler.
13(defconst byte-compile-version "$Revision: 2.33 $") 13(defconst byte-compile-version "$Revision: 2.34 $")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.
16 16
@@ -1119,7 +1119,8 @@ otherwise pop it")
1119 (prog1 (selected-window) 1119 (prog1 (selected-window)
1120 (select-window (display-buffer (current-buffer))) 1120 (select-window (display-buffer (current-buffer)))
1121 (goto-char byte-compile-warnings-point-max) 1121 (goto-char byte-compile-warnings-point-max)
1122 (recenter 1)))))))) 1122 (previous-line 1)
1123 (recenter 0))))))))
1123 1124
1124 1125
1125;;;###autoload 1126;;;###autoload