From: Karl Heuer Date: Thu, 25 Sep 1997 01:10:01 +0000 (+0000) Subject: (displaying-byte-compile-warnings): Show X-Git-Tag: emacs-20.3~3092 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb5b843e7276cf164bbd76adafc92f4959ff21dd;p=emacs.git (displaying-byte-compile-warnings): Show entire "Compiling ..." line when recentering. --- 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