Mercurial > emacs
changeset 3227:b2e2fcc4fb24
(vc-steal-lock, vc-insert-headers): Fix question whitespace.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 29 May 1993 03:10:35 +0000 |
parents | bc4beddaf2c7 |
children | 8199b2047076 |
files | lisp/vc.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Fri May 28 23:58:29 1993 +0000 +++ b/lisp/vc.el Sat May 29 03:10:35 1993 +0000 @@ -99,7 +99,7 @@ (defvar vc-header-alist '((SCCS "\%W\%") (RCS "\$Id\$")) - "*Header keywords to be inserted when `vc-insert-header' is executed.") + "*Header keywords to be inserted when `vc-insert-headers' is executed.") (defconst vc-static-header-alist '(("\\.c$" . "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n")) @@ -553,7 +553,7 @@ (interactive) (if (not owner) (setq owner (vc-locking-user file))) - (if (not (y-or-n-p (format "Take the lock on %s:%s from %s?" file rev owner))) + (if (not (y-or-n-p (format "Take the lock on %s:%s from %s? " file rev owner))) (error "Steal cancelled.")) (pop-to-buffer (get-buffer-create "*VC-mail*")) (setq default-directory (expand-file-name "~/")) @@ -790,7 +790,7 @@ (save-restriction (widen) (if (or (not (vc-check-headers)) - (y-or-n-p "Version headers already exist. Insert another set?")) + (y-or-n-p "Version headers already exist. Insert another set? ")) (progn (let* ((delims (cdr (assq major-mode vc-comment-alist))) (comment-start-vc (or (car delims) comment-start "#"))