]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor text-quoting-style fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 14 Aug 2016 04:30:55 +0000 (23:30 -0500)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 14 Aug 2016 04:32:36 +0000 (23:32 -0500)
* 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.

lisp/cus-edit.el
lisp/recentf.el
src/doc.c

index ef1274534d69d3d838eb06a827d393d03768537a..2e39514cac6d70b0543f5b4bc4b57123469d4096 100644 (file)
@@ -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"
index dc9489752fb56f6cf96e3db081548a1f7f95064f..e30e6468ebbf9c2bd369af22721ee754f37d3a78 100644 (file)
@@ -1124,8 +1124,9 @@ IGNORE arguments."
   (recentf-dialog (format "*%s - Edit list*" recentf-menu-title)
     (set (make-local-variable 'recentf-edit-list) nil)
     (widget-insert
-     "Click on OK to delete selected files from the recent list.
-Click on Cancel or type `q' to cancel.\n")
+     (format-message
+      "Click on OK to delete selected files from the recent list.
+Click on Cancel or type `q' to cancel.\n"))
     ;; Insert the list of files as checkboxes
     (dolist (item recentf-list)
       (widget-create 'checkbox
index e591ffca172d22c2bc6058e654d2d0a04d3edf9e..37a731bfcecee026269c73ddf03c80887412d872 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -714,13 +714,13 @@ summary).
 Each substring of the form \\=\\<MAPVAR> specifies the use of MAPVAR
 as the keymap for future \\=\\[COMMAND] substrings.
 
-Each \\=‘ and \\=` is replaced by left quote, and each \\=’ and \\='
+Each grave accent \\=` is replaced by left quote, and each apostrophe \\='
 is replaced by right quote.  Left and right quote characters are
 specified by `text-quoting-style'.
 
-\\=\\= quotes the following character and is discarded; thus,
-\\=\\=\\=\\= puts \\=\\= into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and
-\\=\\=\\=` puts \\=` into the output.
+\\=\\= quotes the following character and is discarded; thus, \\=\\=\\=\\= puts \\=\\=
+into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and \\=\\=\\=` puts \\=` into the
+output.
 
 Return the original STRING if no substitutions are made.
 Otherwise, return a new string.  */)