summaryrefslogtreecommitdiff
path: root/lisp/cus-theme.el
diff options
context:
space:
mode:
authorRomain Francoise <romain@orebokech.com>2006-08-13 17:05:12 +0000
committerRomain Francoise <romain@orebokech.com>2006-08-13 17:05:12 +0000
commite1a2960c0722989a844750468f748fca71bc65da (patch)
tree91ac89aa27649d8e6e07009d673516df8b804af9 /lisp/cus-theme.el
parent43db7b94c9f8fbb48c444149c47cc9e9fd1fe8d2 (diff)
downloademacs-e1a2960c0722989a844750468f748fca71bc65da.tar.gz
* cus-theme.el (customize-create-theme)
(custom-theme-visit-theme): End `y-or-n-p' prompt with a space. * filesets.el (filesets-add-buffer): Ditto. * pcvs.el (cvs-change-cvsroot): Ditto.
Diffstat (limited to 'lisp/cus-theme.el')
-rw-r--r--lisp/cus-theme.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cus-theme.el b/lisp/cus-theme.el
index 53f530505ae..b4fe1e4b0bf 100644
--- a/lisp/cus-theme.el
+++ b/lisp/cus-theme.el
@@ -99,7 +99,7 @@ the directory " custom-theme-directory "\n\n")
(widget-insert " ")
(widget-create 'push-button
:notify (lambda (&rest ignore)
- (when (y-or-n-p "Discard current changes?")
+ (when (y-or-n-p "Discard current changes? ")
(kill-buffer (current-buffer))
(customize-create-theme)))
"Reset Buffer")
@@ -137,7 +137,7 @@ the directory " custom-theme-directory "\n\n")
(widget-insert "\n")
(widget-create 'push-button
:notify (lambda (&rest ignore)
- (when (y-or-n-p "Discard current changes?")
+ (when (y-or-n-p "Discard current changes? ")
(kill-buffer (current-buffer))
(customize-create-theme)))
"Reset Buffer")
@@ -290,7 +290,7 @@ Optional EVENT is the location for the menu."
(defun custom-theme-visit-theme ()
(interactive)
(when (or (null custom-theme-variables)
- (if (y-or-n-p "Discard current changes?")
+ (if (y-or-n-p "Discard current changes? ")
(progn (customize-create-theme) t)))
(let ((theme (call-interactively 'custom-theme-merge-theme)))
(unless (eq theme 'user)