diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-06-26 23:42:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-06-26 23:42:30 +0000 |
commit | 9b2d3a5ecd735abb0a9918b1f41ffc73501af149 (patch) | |
tree | 63ba75e1db3df39a50aa633f6c0f486ca0f19672 /lisp/vc.el | |
parent | b865c02b1444fa5ff896c48e6395f135a180f1e2 (diff) | |
download | emacs-9b2d3a5ecd735abb0a9918b1f41ffc73501af149.tar.gz |
(vc-start-entry): Prevent lossage when doing a mass checkin from
a VC-dired buffer (Andre Spiegel's code change was slightly wrong).
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 2629b9268e1..cc27216dd69 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -706,7 +706,7 @@ merge in the changes into your working copy." (set (make-local-variable 'vc-parent-buffer) parent) (set (make-local-variable 'vc-parent-buffer-name) (concat " from " (buffer-name vc-parent-buffer))) - (vc-mode-line (or file " (no file)")) + (if file (vc-mode-line file)) (vc-log-mode) (make-local-variable 'vc-log-after-operation-hook) (if after-hook |