aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/pcvs.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/pcvs.el b/lisp/pcvs.el
index eea0e541043..a7683ce371e 100644
--- a/lisp/pcvs.el
+++ b/lisp/pcvs.el
@@ -2115,8 +2115,8 @@ With prefix argument, prompt for cvs flags."
2115 "Add a ChangeLog entry in the ChangeLog of the current directory." 2115 "Add a ChangeLog entry in the ChangeLog of the current directory."
2116 (interactive) 2116 (interactive)
2117 (dolist (fi (cvs-mode-marked nil nil)) 2117 (dolist (fi (cvs-mode-marked nil nil))
2118 (let ((default-directory (cvs-expand-dir-name (cvs-fileinfo->dir fi))) 2118 (let* ((default-directory (cvs-expand-dir-name (cvs-fileinfo->dir fi)))
2119 (buffer-file-name (expand-file-name (cvs-fileinfo->file fi)))) 2119 (buffer-file-name (expand-file-name (cvs-fileinfo->file fi))))
2120 (kill-local-variable 'change-log-default-name) 2120 (kill-local-variable 'change-log-default-name)
2121 (save-excursion (add-change-log-entry-other-window))))) 2121 (save-excursion (add-change-log-entry-other-window)))))
2122 2122