Mercurial > emacs
changeset 19981:1d135b4edfcb
(displaying-byte-compile-warnings): Show
entire "Compiling ..." line when recentering.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 25 Sep 1997 01:10:01 +0000 |
parents | 2b5cebd0da5e |
children | 199256234202 |
files | lisp/emacs-lisp/bytecomp.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el Thu Sep 25 01:01:05 1997 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Thu Sep 25 01:10:01 1997 +0000 @@ -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 @@ (prog1 (selected-window) (select-window (display-buffer (current-buffer))) (goto-char byte-compile-warnings-point-max) - (recenter 1)))))))) + (previous-line 1) + (recenter 0)))))))) ;;;###autoload