* lisp/vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt.
authorGlenn Morris <rgm@gnu.org>
Mon, 7 Mar 2011 08:39:43 +0000 (00:39 -0800)
committerGlenn Morris <rgm@gnu.org>
Mon, 7 Mar 2011 08:39:43 +0000 (00:39 -0800)
lisp/ChangeLog
lisp/vc/vc.el

index d855918..effb2a3 100644 (file)
@@ -1,3 +1,7 @@
+2011-03-07  Glenn Morris  <rgm@gnu.org>
+
+       * vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt.
+
 2011-03-07  Ed Reingold  <reingold@emr.cs.iit.edu>
 
        * calendar/cal-hebrew.el (diary-hebrew-yahrzeit):
index 200291b..2fb397e 100644 (file)
@@ -1115,7 +1115,7 @@ merge in the changes into your working copy."
        (dolist (file files)
          (unless (file-writable-p file)
            ;; Make the file+buffer read-write.
-           (unless (y-or-n-p (format "%s is edited but read-only; make it writable and continue?" file))
+           (unless (y-or-n-p (format "%s is edited but read-only; make it writable and continue? " file))
              (error "Aborted"))
            (set-file-modes file (logior (file-modes file) 128))
            (let ((visited (get-file-buffer file)))