aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/vc.el10
2 files changed, 5 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f958b355c6f..f590dad8196 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,7 @@
12008-05-26 Dan Nicolaescu <dann@ics.uci.edu> 12008-05-26 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * vc.el (Problems): Remove fixed issues. 3 * vc.el (Problems): Remove fixed issues.
4 (vc-expand-dirs): Avoid returning directories.
4 5
5 * vc-dispatcher.el (vc-resynch-window): Fix mode-line updating. 6 * vc-dispatcher.el (vc-resynch-window): Fix mode-line updating.
6 (vc-dir-menu-map): Fix menu title for the menu bar and the popup menu. 7 (vc-dir-menu-map): Fix menu title for the menu bar and the popup menu.
diff --git a/lisp/vc.el b/lisp/vc.el
index 0fd4fbb712c..41818576cb4 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -656,8 +656,6 @@
656;; 656;;
657;; - the CVS vc-dir display is now incorrect from some states. 657;; - the CVS vc-dir display is now incorrect from some states.
658;; 658;;
659;; - vc-dir is now broken for RCS and SCCS.
660;;
661;; - the *vc-dir* buffer is not updated correctly anymore after VC 659;; - the *vc-dir* buffer is not updated correctly anymore after VC
662;; operations that change the file state. 660;; operations that change the file state.
663;; 661;;
@@ -988,10 +986,10 @@ be registered."
988Within directories, only files already under version control are noticed." 986Within directories, only files already under version control are noticed."
989 (let ((flattened '())) 987 (let ((flattened '()))
990 (dolist (node file-or-dir-list) 988 (dolist (node file-or-dir-list)
991 (if (file-directory-p node) 989 (when (file-directory-p node)
992 (vc-file-tree-walk 990 (vc-file-tree-walk
993 node (lambda (f) (when (vc-backend f) (push f flattened))))) 991 node (lambda (f) (when (vc-backend f) (push f flattened)))))
994 (push node flattened)) 992 (unless (file-directory-p node) (push node flattened)))
995 (nreverse flattened))) 993 (nreverse flattened)))
996 994
997(defun vc-derived-from-dir-mode (&optional buffer) 995(defun vc-derived-from-dir-mode (&optional buffer)