aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorK. Handa2015-09-08 20:43:11 +0900
committerK. Handa2015-09-08 20:43:11 +0900
commit94ed5167557112fb00eeca05e62589db744206de (patch)
tree80a544f8534802dd61fbd218b97441d3419dbf6b /src/doc.c
parent33f2e0023a5ef03db3e99ade0b93a7a1a913dbe1 (diff)
parent10e7f7de910ca816799062f33b830f7598801f0e (diff)
downloademacs-94ed5167557112fb00eeca05e62589db744206de.tar.gz
emacs-94ed5167557112fb00eeca05e62589db744206de.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c14
1 files changed, 7 insertions, 7 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);