]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-warning-prefix):
authorRichard M. Stallman <rms@gnu.org>
Fri, 19 Sep 2003 14:29:42 +0000 (14:29 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 19 Sep 2003 14:29:42 +0000 (14:29 +0000)
Fix the condition for whether to print "In WHERE".

lisp/emacs-lisp/bytecomp.el

index 077c68523c2e4b3cc575d9b6250f5ba313d0e9dd..743ebea3c1ef422edd686eef766c41360cb39b70 100644 (file)
@@ -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)))