emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/vc.el


From: Thien-Thi Nguyen
Subject: [Emacs-diffs] Changes to emacs/lisp/vc.el
Date: Wed, 03 Nov 2004 05:46:18 -0500

Index: emacs/lisp/vc.el
diff -c emacs/lisp/vc.el:1.383 emacs/lisp/vc.el:1.384
*** emacs/lisp/vc.el:1.383      Wed Nov  3 10:21:09 2004
--- emacs/lisp/vc.el    Wed Nov  3 10:40:35 2004
***************
*** 2907,2913 ****
      ;; Run through this file and find the oldest and newest dates annotated.
      (save-excursion
        (goto-char (point-min))
!       (while (setq date (vc-call-backend vc-annotate-backend 'annotate-time))
        (if (> date newest)
            (setq newest date))
        (if (< date oldest)
--- 2907,2915 ----
      ;; Run through this file and find the oldest and newest dates annotated.
      (save-excursion
        (goto-char (point-min))
!       (while (setq date (prog1 (vc-call-backend vc-annotate-backend
!                                                 'annotate-time)
!                           (forward-line 1)))
        (if (> date newest)
            (setq newest date))
        (if (< date oldest)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]