diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-09-25 01:10:01 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-09-25 01:10:01 +0000 |
commit | cb5b843e7276cf164bbd76adafc92f4959ff21dd (patch) | |
tree | f1e4116b31f450510cb32434bcc73b6c3612fc20 /lisp/emacs-lisp | |
parent | a59f6ba35e94c6232ebb3fb633ca6b13573a0b1e (diff) | |
download | emacs-cb5b843e7276cf164bbd76adafc92f4959ff21dd.tar.gz emacs-cb5b843e7276cf164bbd76adafc92f4959ff21dd.tar.bz2 emacs-cb5b843e7276cf164bbd76adafc92f4959ff21dd.zip |
(displaying-byte-compile-warnings): Show
entire "Compiling ..." line when recentering.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 5 |
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 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.33 $") +(defconst byte-compile-version "$Revision: 2.34 $") ;; This file is part of GNU Emacs. @@ -1119,7 +1119,8 @@ otherwise pop it") (prog1 (selected-window) (select-window (display-buffer (current-buffer))) (goto-char byte-compile-warnings-point-max) - (recenter 1)))))))) + (previous-line 1) + (recenter 0)))))))) ;;;###autoload |