diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.c | 14 | ||||
| -rw-r--r-- | src/editfns.c | 4 | ||||
| -rw-r--r-- | src/keyboard.c | 8 |
3 files changed, 13 insertions, 13 deletions
| @@ -724,7 +724,7 @@ as the keymap for future \\=\\[COMMAND] substrings. | |||
| 724 | 724 | ||
| 725 | Each \\=‘ and \\=` is replaced by left quote, and each \\=’ and \\=' | 725 | Each \\=‘ and \\=` is replaced by left quote, and each \\=’ and \\=' |
| 726 | is replaced by right quote. Left and right quote characters are | 726 | is replaced by right quote. Left and right quote characters are |
| 727 | specified by ‘text-quoting-style’. | 727 | specified by `text-quoting-style'. |
| 728 | 728 | ||
| 729 | \\=\\= quotes the following character and is discarded; thus, | 729 | \\=\\= quotes the following character and is discarded; thus, |
| 730 | \\=\\=\\=\\= puts \\=\\= into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and | 730 | \\=\\=\\=\\= puts \\=\\= into the output, \\=\\=\\=\\[ puts \\=\\[ into the output, and |
| @@ -1024,15 +1024,15 @@ syms_of_doc (void) | |||
| 1024 | 1024 | ||
| 1025 | DEFVAR_LISP ("text-quoting-style", Vtext_quoting_style, | 1025 | DEFVAR_LISP ("text-quoting-style", Vtext_quoting_style, |
| 1026 | doc: /* Style to use for single quotes when generating text. | 1026 | doc: /* Style to use for single quotes when generating text. |
| 1027 | ‘curve’ means quote with curved single quotes \\=‘like this\\=’. | 1027 | `curve' means quote with curved single quotes \\=‘like this\\=’. |
| 1028 | ‘straight’ means quote with straight apostrophes \\='like this\\='. | 1028 | `straight' means quote with straight apostrophes \\='like this\\='. |
| 1029 | ‘grave’ means quote with grave accent and apostrophe \\=`like this\\='. | 1029 | `grave' means quote with grave accent and apostrophe \\=`like this\\='. |
| 1030 | The default value nil acts like ‘curve’ if curved single quotes are | 1030 | The default value nil acts like `curve' if curved single quotes are |
| 1031 | displayable, and like ‘grave’ otherwise. */); | 1031 | displayable, and like `grave' otherwise. */); |
| 1032 | Vtext_quoting_style = Qnil; | 1032 | Vtext_quoting_style = Qnil; |
| 1033 | 1033 | ||
| 1034 | DEFVAR_BOOL ("internal--text-quoting-flag", text_quoting_flag, | 1034 | DEFVAR_BOOL ("internal--text-quoting-flag", text_quoting_flag, |
| 1035 | doc: /* If nil, a nil ‘text-quoting-style’ is treated as ‘grave’. */); | 1035 | doc: /* If nil, a nil `text-quoting-style' is treated as `grave'. */); |
| 1036 | /* Initialized by ‘main’. */ | 1036 | /* Initialized by ‘main’. */ |
| 1037 | 1037 | ||
| 1038 | defsubr (&Sdocumentation); | 1038 | defsubr (&Sdocumentation); |
diff --git a/src/editfns.c b/src/editfns.c index e7d5dd89e51..831edb4c171 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3837,11 +3837,11 @@ DEFUN ("format-message", Fformat_message, Sformat_message, 1, MANY, 0, | |||
| 3837 | The first argument is a format control string. | 3837 | The first argument is a format control string. |
| 3838 | The other arguments are substituted into it to make the result, a string. | 3838 | The other arguments are substituted into it to make the result, a string. |
| 3839 | 3839 | ||
| 3840 | This acts like ‘format’, except it also replaces each left single | 3840 | This acts like `format', except it also replaces each left single |
| 3841 | quotation mark (\\=‘) and grave accent (\\=`) by a left quote, and each | 3841 | quotation mark (\\=‘) and grave accent (\\=`) by a left quote, and each |
| 3842 | right single quotation mark (\\=’) and apostrophe (\\=') by a right quote. | 3842 | right single quotation mark (\\=’) and apostrophe (\\=') by a right quote. |
| 3843 | The left and right quote replacement characters are specified by | 3843 | The left and right quote replacement characters are specified by |
| 3844 | ‘text-quoting-style’. | 3844 | `text-quoting-style'. |
| 3845 | 3845 | ||
| 3846 | usage: (format-message STRING &rest OBJECTS) */) | 3846 | usage: (format-message STRING &rest OBJECTS) */) |
| 3847 | (ptrdiff_t nargs, Lisp_Object *args) | 3847 | (ptrdiff_t nargs, Lisp_Object *args) |
diff --git a/src/keyboard.c b/src/keyboard.c index 7d6a2b00860..ccd340557dd 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -703,11 +703,11 @@ force_auto_save_soon (void) | |||
| 703 | 703 | ||
| 704 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | 704 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", |
| 705 | doc: /* Invoke the editor command loop recursively. | 705 | doc: /* Invoke the editor command loop recursively. |
| 706 | To get out of the recursive edit, a command can throw to ‘exit’ -- for | 706 | To get out of the recursive edit, a command can throw to `exit' -- for |
| 707 | instance ‘(throw \\='exit nil)’. | 707 | instance (throw \\='exit nil). |
| 708 | If you throw a value other than t, ‘recursive-edit’ returns normally | 708 | If you throw a value other than t, `recursive-edit' returns normally |
| 709 | to the function that called it. Throwing a t value causes | 709 | to the function that called it. Throwing a t value causes |
| 710 | ‘recursive-edit’ to quit, so that control returns to the command loop | 710 | `recursive-edit' to quit, so that control returns to the command loop |
| 711 | one level up. | 711 | one level up. |
| 712 | 712 | ||
| 713 | This function is called by the editor initialization to begin editing. */) | 713 | This function is called by the editor initialization to begin editing. */) |