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,v


From: Eric S. Raymond
Subject: [Emacs-diffs] Changes to emacs/lisp/vc.el,v
Date: Thu, 27 Dec 2007 15:26:04 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Eric S. Raymond <esr>   07/12/27 15:26:04

Index: vc.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/vc.el,v
retrieving revision 1.496
retrieving revision 1.497
diff -u -b -r1.496 -r1.497
--- vc.el       27 Dec 2007 14:41:43 -0000      1.496
+++ vc.el       27 Dec 2007 15:26:02 -0000      1.497
@@ -2387,13 +2387,16 @@
         ((vc-dired-ignorable-p filename)
          (dired-kill-line))
          ;; ordinary file -- call the (possibly expensive) state query
-         ((and (vc-backend filename)
+         (t
+         (let ((backend (vc-backend filename)))
+           (cond
+            ((and backend
               (not (and vc-dired-terse-mode
                         (vc-up-to-date-p filename))))
           (vc-dired-reformat-line (vc-call dired-state-info filename))
           (forward-line 1))
          (t
-          (dired-kill-line))))
+             (dired-kill-line)))))))
        ;; any other line
        (t (forward-line 1))))
     (vc-dired-purge))




reply via email to

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