]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
authorGlenn Morris <rgm@gnu.org>
Wed, 6 Oct 2010 04:06:25 +0000 (21:06 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 6 Oct 2010 04:06:25 +0000 (21:06 -0700)
Remove arch-tag comment.

lisp/ChangeLog
lisp/hilit-chg.el

index b681fb05b85315020379bbfd13e7e1b85a480350..5de5380925bfbbbc56d009a98551c0ce3ff8a9b0 100644 (file)
@@ -1,5 +1,7 @@
 2010-10-06  Glenn Morris  <rgm@gnu.org>
 
+       * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
+
        * emacs-lisp/cl.el: No longer provide cl-19.
 
 2010-10-05  Michael Albinus  <michael.albinus@gmx.de>
index ec9c88fd6ec97f6e79d320ac028b7934f6b2843a..22012986be5ecee66c9795b35fb6ac3859e49413 100644 (file)
@@ -921,7 +921,7 @@ changes are made, so \\[highlight-changes-next-change] and
 
 
 (defun hilit-chg-get-diff-info (buf-a file-a buf-b file-b)
-  (let ((e nil) x y)   ;; e is set by function hilit-chg-get-diff-list-hk
+  (let (e x y)   ; e,x,y are set by function hilit-chg-get-diff-list-hk
     (ediff-setup buf-a file-a buf-b file-b
               nil nil   ; buf-c file-C
               'hilit-chg-get-diff-list-hk
@@ -932,10 +932,11 @@ changes are made, so \\[highlight-changes-next-change] and
 
 
 (defun hilit-chg-get-diff-list-hk ()
-  ;; x and y are dynamically bound by hilit-chg-get-diff-info
+  ;; e, x and y are dynamically bound by hilit-chg-get-diff-info
   ;; which calls this function as a hook
-  (defvar x)  ;; placate the byte-compiler
+  (defvar x)                            ; placate the byte-compiler
   (defvar y)
+  (defvar e)
   (setq e (current-buffer))
   (let ((n 0) extent p va vb a b)
     (setq x nil y nil)    ;; x and y are bound by hilit-chg-get-diff-info
@@ -1035,5 +1036,4 @@ This is called when `global-highlight-changes-mode' is turned on."
 
 (provide 'hilit-chg)
 
-;; arch-tag: de00301d-5bad-44da-aa82-e0e010b0c463
 ;;; hilit-chg.el ends here