aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/vc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 4ee27391003..b015d56c87f 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -7,7 +7,7 @@
7;; Maintainer: Andre Spiegel <spiegel@gnu.org> 7;; Maintainer: Andre Spiegel <spiegel@gnu.org>
8;; Keywords: tools 8;; Keywords: tools
9 9
10;; $Id: vc.el,v 1.359 2003/07/06 19:08:13 jpw Exp $ 10;; $Id: vc.el,v 1.360 2003/09/01 15:45:17 miles Exp $
11 11
12;; This file is part of GNU Emacs. 12;; This file is part of GNU Emacs.
13 13
@@ -2144,7 +2144,7 @@ Called by dired after any portion of a vc-dired buffer has been read in."
2144 ;; We cannot remove the top level directory. 2144 ;; We cannot remove the top level directory.
2145 ;; Just make it look a little nicer. 2145 ;; Just make it look a little nicer.
2146 (forward-line 1) 2146 (forward-line 1)
2147 (kill-line) 2147 (or (eobp) (kill-line))
2148 (if (not (dired-next-subdir 1 t)) 2148 (if (not (dired-next-subdir 1 t))
2149 (goto-char (point-max)))))) 2149 (goto-char (point-max))))))
2150 (goto-char (point-min))) 2150 (goto-char (point-min)))