aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/doc.c14
-rw-r--r--src/editfns.c4
-rw-r--r--src/keyboard.c8
3 files changed, 13 insertions, 13 deletions
diff --git a/src/doc.c b/src/doc.c
index 5d0aae795b7..b6963d2ab0b 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -724,7 +724,7 @@ as the keymap for future \\=\\[COMMAND] substrings.
724 724
725Each \\=‘ and \\=` is replaced by left quote, and each \\=’ and \\=' 725Each \\=‘ and \\=` is replaced by left quote, and each \\=’ and \\='
726is replaced by right quote. Left and right quote characters are 726is replaced by right quote. Left and right quote characters are
727specified by text-quoting-style. 727specified 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.
1027curve means quote with curved single quotes \\=‘like this\\=’. 1027`curve' means quote with curved single quotes \\=‘like this\\=’.
1028straight means quote with straight apostrophes \\='like this\\='. 1028`straight' means quote with straight apostrophes \\='like this\\='.
1029grave means quote with grave accent and apostrophe \\=`like this\\='. 1029`grave' means quote with grave accent and apostrophe \\=`like this\\='.
1030The default value nil acts like curve if curved single quotes are 1030The default value nil acts like `curve' if curved single quotes are
1031displayable, and like grave otherwise. */); 1031displayable, 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,
3837The first argument is a format control string. 3837The first argument is a format control string.
3838The other arguments are substituted into it to make the result, a string. 3838The other arguments are substituted into it to make the result, a string.
3839 3839
3840This acts like format, except it also replaces each left single 3840This acts like `format', except it also replaces each left single
3841quotation mark (\\=‘) and grave accent (\\=`) by a left quote, and each 3841quotation mark (\\=‘) and grave accent (\\=`) by a left quote, and each
3842right single quotation mark (\\=’) and apostrophe (\\=') by a right quote. 3842right single quotation mark (\\=’) and apostrophe (\\=') by a right quote.
3843The left and right quote replacement characters are specified by 3843The left and right quote replacement characters are specified by
3844text-quoting-style. 3844`text-quoting-style'.
3845 3845
3846usage: (format-message STRING &rest OBJECTS) */) 3846usage: (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
704DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", 704DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
705 doc: /* Invoke the editor command loop recursively. 705 doc: /* Invoke the editor command loop recursively.
706To get out of the recursive edit, a command can throw to exit -- for 706To get out of the recursive edit, a command can throw to `exit' -- for
707instance (throw \\='exit nil). 707instance (throw \\='exit nil).
708If you throw a value other than t, recursive-edit returns normally 708If you throw a value other than t, `recursive-edit' returns normally
709to the function that called it. Throwing a t value causes 709to the function that called it. Throwing a t value causes
710recursive-edit to quit, so that control returns to the command loop 710`recursive-edit' to quit, so that control returns to the command loop
711one level up. 711one level up.
712 712
713This function is called by the editor initialization to begin editing. */) 713This function is called by the editor initialization to begin editing. */)