emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lisp/vc/vc.el (vc-merge): missing space in prompt


From: Simon Leinen
Subject: lisp/vc/vc.el (vc-merge): missing space in prompt
Date: Sat, 24 Mar 2012 13:45:03 +0100

Using the current pretest 24.0.94, I noticed that when vc-merge prompts me for the branch or revision to merge, the message misses a space after the filename, e.g.

    Merge /home/leinen/cl/fluxoscope/snmp-get-info.lispfrom branch or revision (default news on current branch): 

Here's the one-character fix.  Hopefully Gmail doesn't break the patch, otherwise I can resend it as an attachment.
-- 
Simon.

=== modified file 'lisp/ChangeLog'
--- lisp/ChangeLog 2012-03-23 02:46:31 +0000
+++ lisp/ChangeLog 2012-03-24 10:44:48 +0000
@@ -1,3 +1,8 @@
+2012-03-24  Simon Leinen  <address@hidden>
+
+ * vc/vc.el (vc-merge): Added missing space to the message that
+ asks for the first branch/revision.
+
 2012-03-23  Stefan Monnier  <address@hidden>
 
  * newcomment.el (comment-choose-indent): No space after BOL.

=== modified file 'lisp/vc/vc.el'
--- lisp/vc/vc.el 2012-02-09 06:25:18 +0000
+++ lisp/vc/vc.el 2012-03-24 10:37:02 +0000
@@ -1922,7 +1922,7 @@
   (setq first-revision
  (vc-read-revision
  (concat "Merge " file
- "from branch or revision "
+ " from branch or revision "
  "(default news on current branch): ")
  (list file)
  backend))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]