diff options
| author | K. Handa | 2015-09-08 20:43:11 +0900 |
|---|---|---|
| committer | K. Handa | 2015-09-08 20:43:11 +0900 |
| commit | 94ed5167557112fb00eeca05e62589db744206de (patch) | |
| tree | 80a544f8534802dd61fbd218b97441d3419dbf6b /src/doc.c | |
| parent | 33f2e0023a5ef03db3e99ade0b93a7a1a913dbe1 (diff) | |
| parent | 10e7f7de910ca816799062f33b830f7598801f0e (diff) | |
| download | emacs-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.c | 14 |
1 files changed, 7 insertions, 7 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); |