From 619f4b625e020c27d787e14e4f3c499be6b2ef77 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Mon, 7 Mar 2011 00:39:43 -0800 Subject: [PATCH] * lisp/vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt. --- lisp/ChangeLog | 4 ++++ lisp/vc/vc.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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))) -- 2.39.5