aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc.el
diff options
context:
space:
mode:
authorDan Nicolaescu <[email protected]>2007-08-26 00:32:23 +0000
committerDan Nicolaescu <[email protected]>2007-08-26 00:32:23 +0000
commita549ce70542360af098cc94d191cc01879bf3a8e (patch)
tree1bf73c7f8c2bf99e266e4a0fc7b5f3f5911bacfd /lisp/vc.el
parent7f59302aef3e384cfca55b03490a1542060e821c (diff)
* vc-hooks.el (vc-registered): Use mapc instead of mapcar.
(vc-delete-automatic-version-backups): Likewise. * vc.el (vc-dired-buffers-for-dir): Likewise.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r--lisp/vc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 2b0d2fa1a8..e65cd5b85a 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -2382,7 +2382,7 @@ Called by dired after any portion of a vc-dired buffer has been read in."
(let (result)
;; Check whether dired is loaded.
(when (fboundp 'dired-buffers-for-dir)
- (mapcar (lambda (buffer)
+ (mapc (lambda (buffer)
(with-current-buffer buffer
(if vc-dired-mode
(setq result (append result (list buffer))))))