summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>2008-05-02 07:38:11 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>2008-05-02 07:38:11 +0000
commit035b82116b7a780dfe492a782e227d6c399f70c1 (patch)
treea2b329bc3c2a690aeac5afc740a8707ebb5d96ac
parentc3e10ab883f0cb2058a04ec10ae9398f7b5c5d70 (diff)
downloademacs-035b82116b7a780dfe492a782e227d6c399f70c1.tar.gz
Fix some comments to remove references to vc-dired.
-rw-r--r--lisp/vc-arch.el2
-rw-r--r--lisp/vc-cvs.el4
-rw-r--r--lisp/vc-hg.el2
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el
index 77e36dd335e..1573e55bd78 100644
--- a/lisp/vc-arch.el
+++ b/lisp/vc-arch.el
@@ -50,7 +50,7 @@
;; - C-x v u does not work.
;; - C-x v s does not work.
;; - C-x v r does not work.
-;; - VC-dired does not work.
+;; - VC directory listings do not work.
;; - And more...
;;; Code:
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el
index f935bf9a486..d67352ab250 100644
--- a/lisp/vc-cvs.el
+++ b/lisp/vc-cvs.el
@@ -798,8 +798,8 @@ For an empty string, nil is returned (invalid CVS root)."
;; information is context sensitive, it contains lines like:
;; cvs status: Examining DIRNAME
;; and the file entries after that don't show the full path.
-;; Because of this vc-dired only shows changed files at the top level
-;; for CVS.
+;; Because of this VC directory listings only show changed files
+;; at the top level for CVS.
(defun vc-cvs-parse-status (&optional full)
"Parse output of \"cvs status\" command in the current buffer.
Set file properties accordingly. Unless FULL is t, parse only
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el
index 59aba1cc2a7..a4e08e021ee 100644
--- a/lisp/vc-hg.el
+++ b/lisp/vc-hg.el
@@ -199,7 +199,7 @@
;; State flag for a clean file is now C, might change to =.
;; The rest of the possible states in "hg status" output:
;; ! = deleted, but still tracked
- ;; should not show up in vc-dired, so don't deal with them
+ ;; should not show up in VC directory buffers, so don't deal with them
;; here.
;; Mercurial up to 0.9.5 used C, = is used now.