# HG changeset patch # User Richard M. Stallman # Date 1063981782 0 # Node ID c8dcd0a4adb36150a20ab3147ac63eed5b3025df # Parent acdfe93d0ae856cd414dbfaf625fb38c552e95a5 (byte-compile-warning-prefix): Fix the condition for whether to print "In WHERE". diff -r acdfe93d0ae8 -r c8dcd0a4adb3 lisp/emacs-lisp/bytecomp.el --- a/lisp/emacs-lisp/bytecomp.el Fri Sep 19 14:28:46 2003 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Fri Sep 19 14:29:42 2003 +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.136 $") +(defconst byte-compile-version "$Revision: 2.137 $") ;; This file is part of GNU Emacs. @@ -929,7 +929,7 @@ (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)))