diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-03 03:15:38 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-03 03:15:38 +0200 |
commit | ce1438d696bd670b5aba5690ce4f73b836b20194 (patch) | |
tree | dd0bd75361f681f99ddf61609beb70ea1e7e9f15 /lisp/vc | |
parent | 3653687a1b337db8f78d9e96c54a6e003d2af409 (diff) | |
download | emacs-ce1438d696bd670b5aba5690ce4f73b836b20194.tar.gz |
* vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
for consistency with the other vc buffers (bug#6197).
(vc-checkin): Ditto.
Diffstat (limited to 'lisp/vc')
-rw-r--r-- | lisp/vc/vc-arch.el | 2 | ||||
-rw-r--r-- | lisp/vc/vc.el | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/vc/vc-arch.el b/lisp/vc/vc-arch.el index 59cefe047b6..eeac55ac0f8 100644 --- a/lisp/vc/vc-arch.el +++ b/lisp/vc/vc-arch.el @@ -39,7 +39,7 @@ ;; Bugs: -;; - *VC-log*'s initial content lacks the `Summary:' lines. +;; - *vc-log*'s initial content lacks the `Summary:' lines. ;; - All files under the tree are considered as "under Arch's control" ;; without regards to =tagging-method and such. ;; - Files are always considered as `edited'. diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 5ec4c3998d8..e3f3c153043 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -620,7 +620,7 @@ ;; buffer, if one is present, instead of adding to the ChangeLog. ;; ;; - When vc-next-action calls vc-checkin it could pre-fill the -;; *VC-log* buffer with some obvious items: the list of files that +;; *vc-log* buffer with some obvious items: the list of files that ;; were added, the list of files that were removed. If the diff is ;; available, maybe it could even call something like ;; `diff-add-change-log-entries-other-window' to create a detailed @@ -1414,7 +1414,7 @@ Runs the normal hooks `vc-before-checkin-hook' and `vc-checkin-hook'." (vc-start-logentry files comment initial-contents "Enter a change comment." - "*VC-log*" + "*vc-log*" (lambda () (vc-call-backend backend 'log-edit-mode)) (lexical-let ((rev rev)) @@ -1876,7 +1876,7 @@ The headers are reset to their non-expanded form." (vc-start-logentry files oldcomment t "Enter a replacement change comment." - "*VC-log*" + "*vc-log*" (lambda () (vc-call-backend backend 'log-edit-mode)) (lexical-let ((rev rev)) (lambda (files comment) |