diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-09-19 14:29:42 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-09-19 14:29:42 +0000 |
commit | 2c0696b144c468d8ec3eb5eba8a24f176a9d417e (patch) | |
tree | f1bfb5b6a999f02fa0bf1dc44d178ce355ba0588 /lisp/emacs-lisp | |
parent | dcd70a815b0f7a6538a533237ab5b0b33eeda24a (diff) | |
download | emacs-2c0696b144c468d8ec3eb5eba8a24f176a9d417e.tar.gz |
(byte-compile-warning-prefix):
Fix the condition for whether to print "In WHERE".
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 077c68523c2..743ebea3c1e 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.136 $") +(defconst byte-compile-version "$Revision: 2.137 $") ;; This file is part of GNU Emacs. @@ -929,7 +929,7 @@ Each function's symbol gets marked with the `byte-compile-noruntime' property." (when (or (and byte-compile-current-file (not (equal byte-compile-current-file byte-compile-last-logged-file))) - (and byte-compile-last-warned-form + (and byte-compile-current-form (not (eq byte-compile-current-form byte-compile-last-warned-form)))) (insert (format "\nIn %s:\n" form))) |