diff options
| author | Paul Eggert | 2016-08-13 23:30:55 -0500 |
|---|---|---|
| committer | Paul Eggert | 2016-08-13 23:32:36 -0500 |
| commit | 66ae4cada5bb22737e63e59fdaf0983b12dc29bc (patch) | |
| tree | 6712348da0af6196a8d0aa9a95c80eaa04662c60 /src/doc.c | |
| parent | 2791580f5eaa65948a13ea4ea4952d03b4da795b (diff) | |
| download | emacs-66ae4cada5bb22737e63e59fdaf0983b12dc29bc.tar.gz emacs-66ae4cada5bb22737e63e59fdaf0983b12dc29bc.zip | |
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 'src/doc.c')
| -rw-r--r-- | src/doc.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -714,13 +714,13 @@ summary). | |||
| 714 | Each substring of the form \\=\\<MAPVAR> specifies the use of MAPVAR | 714 | Each substring of the form \\=\\<MAPVAR> specifies the use of MAPVAR |
| 715 | as the keymap for future \\=\\[COMMAND] substrings. | 715 | as the keymap for future \\=\\[COMMAND] substrings. |
| 716 | 716 | ||
| 717 | Each \\=‘ and \\=` is replaced by left quote, and each \\=’ and \\=' | 717 | Each grave accent \\=` is replaced by left quote, and each apostrophe \\=' |
| 718 | is replaced by right quote. Left and right quote characters are | 718 | is replaced by right quote. Left and right quote characters are |
| 719 | specified by `text-quoting-style'. | 719 | specified by `text-quoting-style'. |
| 720 | 720 | ||
| 721 | \\=\\= quotes the following character and is discarded; thus, | 721 | \\=\\= quotes the following character and is discarded; thus, \\=\\=\\=\\= puts \\=\\= |
| 722 | \\=\\=\\=\\= puts \\=\\= into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and | 722 | into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and \\=\\=\\=` puts \\=` into the |
| 723 | \\=\\=\\=` puts \\=` into the output. | 723 | output. |
| 724 | 724 | ||
| 725 | Return the original STRING if no substitutions are made. | 725 | Return the original STRING if no substitutions are made. |
| 726 | Otherwise, return a new string. */) | 726 | Otherwise, return a new string. */) |