* lisp/vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)

This commit is contained in:
Glenn Morris 2012-01-24 19:07:04 -05:00
parent b559f1a908
commit 5ae1a6c8a2
2 changed files with 6 additions and 1 deletions

View file

@ -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)

View file

@ -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))))))