* lisp/vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
This commit is contained in:
parent
b559f1a908
commit
5ae1a6c8a2
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-01-25 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
|
||||
|
||||
2012-01-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
|
||||
|
|
|
@ -1880,7 +1880,8 @@ The headers are reset to their non-expanded form."
|
|||
"Enter a replacement change comment."
|
||||
"*vc-log*"
|
||||
(lambda () (vc-call-backend backend 'log-edit-mode))
|
||||
(lexical-let ((rev rev))
|
||||
(lexical-let ((rev rev)
|
||||
(backend backend))
|
||||
(lambda (files comment)
|
||||
(vc-call-backend backend
|
||||
'modify-change-comment files rev comment))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue