summaryrefslogtreecommitdiff
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-08-13 23:30:55 -0500
committerPaul Eggert <eggert@cs.ucla.edu>2016-08-13 23:32:36 -0500
commit66ae4cada5bb22737e63e59fdaf0983b12dc29bc (patch)
tree6712348da0af6196a8d0aa9a95c80eaa04662c60 /lisp/cus-edit.el
parent2791580f5eaa65948a13ea4ea4952d03b4da795b (diff)
downloademacs-66ae4cada5bb22737e63e59fdaf0983b12dc29bc.tar.gz
Minor text-quoting-style fixes
* lisp/cus-edit.el (custom-buffer-create-internal): * lisp/recentf.el (recentf-edit-list): Follow text-quoting-style preference when quoting in UI strings. * src/doc.c (Fsubstitute_command_keys): Don’t say that curved quotes are substituted for, as this is no longer true.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index ef1274534d6..2e39514cac6 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1617,7 +1617,9 @@ Otherwise use brackets."
;; Insert verbose help at the top of the custom buffer.
(when custom-buffer-verbose-help
(unless init-file
- (widget-insert "Custom settings cannot be saved; maybe you started Emacs with `-q'.\n"))
+ (widget-insert
+ (format-message
+ "Custom settings cannot be saved; maybe you started Emacs with `-q'.\n")))
(widget-insert "For help using this buffer, see ")
(widget-create 'custom-manual
:tag "Easy Customization"