From: Glenn Morris Date: Mon, 7 Mar 2011 08:39:43 +0000 (-0800) Subject: * lisp/vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~654 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=619f4b625e020c27d787e14e4f3c499be6b2ef77;p=emacs.git * lisp/vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8559182c5d..effb2a3038a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-03-07 Glenn Morris + + * vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt. + 2011-03-07 Ed Reingold * calendar/cal-hebrew.el (diary-hebrew-yahrzeit): diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 200291bd925..2fb397ed6f8 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -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)))