]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-annotate-offset): Move defvar up.
authorJohn Paul Wallington <jpw@pobox.com>
Sun, 6 Jul 2003 19:09:10 +0000 (19:09 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sun, 6 Jul 2003 19:09:10 +0000 (19:09 +0000)
lisp/ChangeLog
lisp/vc.el

index d2783845165d9e36d8feeba7ff462727e82e7150..2d0d7309252cf0b9a18da00d4d2b5516f93b9772 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-06  John Paul Wallington  <jpw@gnu.org>
+
+       * vc.el (vc-annotate-offset): Move defvar up.
+
 2003-07-06  Kim F. Storm  <storm@cua.dk>
 
        * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
index 8464b72aacc55f1bb859351fcc6ca652cc04307f..491ff1f5da622502b0c5a537df43037f417590fb 100644 (file)
@@ -7,7 +7,7 @@
 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
 ;; Keywords: tools
 
-;; $Id: vc.el,v 1.357 2003/06/30 10:34:26 rms Exp $
+;; $Id: vc.el,v 1.358 2003/07/06 17:28:12 monnier Exp $
 
 ;; This file is part of GNU Emacs.
 
@@ -3029,6 +3029,8 @@ or OFFSET if present."
   "Return the current time, encoded as fractional days."
   (vc-annotate-convert-time (current-time)))
 
+(defvar vc-annotate-offset nil)
+
 (defun vc-annotate-display (&optional color-map offset)
   "Highlight `vc-annotate' output in the current buffer.
 COLOR-MAP, if present, overrides `vc-annotate-color-map'.
@@ -3038,8 +3040,6 @@ The annotations are relative to the current time, unless overridden by OFFSET."
   (set (make-local-variable 'vc-annotate-offset) offset)
   (font-lock-mode 1))
 
-(defvar vc-annotate-offset nil)
-
 (defun vc-annotate-lines (limit)
   (let (difference)
     (while (and (< (point) limit)