summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-05-08 16:17:01 +0000
committerRichard M. Stallman <rms@gnu.org>1993-05-08 16:17:01 +0000
commit0ee7d6239af171b5bd689a7aff15dafcea9a938c (patch)
tree18b62ea6712b072340a9c02fd0831042043b78b9 /lisp
parent6ed5075cab814946fc39d5810facd2ca5f23df27 (diff)
downloademacs-0ee7d6239af171b5bd689a7aff15dafcea9a938c.tar.gz
emacs-0ee7d6239af171b5bd689a7aff15dafcea9a938c.tar.bz2
emacs-0ee7d6239af171b5bd689a7aff15dafcea9a938c.zip
(vc-directory-18): cd to the directory in question before the file tree walk.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/vc.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 9bc5dabaa38..6a0742b8de5 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -897,10 +897,11 @@ on a buffer attached to the file named in the current Dired buffer line."
(defun vc-directory-18 (verbose)
"Show version-control status of all files under the current directory."
(interactive "P")
- (let (nonempty)
+ (let (nonempty (dir default-directory))
(save-excursion
(set-buffer (get-buffer-create "*vc-status*"))
(erase-buffer)
+ (cd dir)
(vc-file-tree-walk
(function (lambda (f)
(if (vc-registered f)