aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-dir.el17
2 files changed, 19 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bea19285c9a..0ace3b09ae6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-04-10 Richard M Stallman <rms@gnu.org>
2
3 * vc-dir.el (vc-dir): Dox fix.
4
12009-04-10 Eli Zaretskii <eliz@gnu.org> 52009-04-10 Eli Zaretskii <eliz@gnu.org>
2 6
3 * mail/unrmail.el (unrmail): If "Mail-From" header is found, 7 * mail/unrmail.el (unrmail): If "Mail-From" header is found,
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el
index 4ac5ed6852a..4316caeade1 100644
--- a/lisp/vc-dir.el
+++ b/lisp/vc-dir.el
@@ -1110,9 +1110,22 @@ outside of VC) and one wants to do some operation on it."
1110 1110
1111;;;###autoload 1111;;;###autoload
1112(defun vc-dir (dir &optional backend) 1112(defun vc-dir (dir &optional backend)
1113 "Show the VC status for DIR. 1113 "Show the VC status for \"interesting\" files in and below DIR.
1114This allows you to mark files and perform VC operations on them.
1115The list omits files which are up to date, with no changes in your copy
1116or the repository, if there is nothing in particular to say about them.
1117
1118Preparing the list of file status takes time; when the buffer
1119first appears, it has only the first few lines of summary information.
1120The file lines appear later.
1121
1114Optional second argument BACKEND specifies the VC backend to use. 1122Optional second argument BACKEND specifies the VC backend to use.
1115Interactively, a prefix argument means to ask for the backend." 1123Interactively, a prefix argument means to ask for the backend.
1124
1125These are the commands available for use in the file status buffer:
1126
1127\\<vc-dir-mode-map>"
1128
1116 (interactive 1129 (interactive
1117 (list 1130 (list
1118 ;; When you hit C-x v d in a visited VC file, 1131 ;; When you hit C-x v d in a visited VC file,