mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
; * src/doc.c (syms_of_doc): Fix last change.
This commit is contained in:
parent
74a4f3e043
commit
7f317868c5
1 changed files with 7 additions and 7 deletions
14
src/doc.c
14
src/doc.c
|
|
@ -720,18 +720,18 @@ syms_of_doc (void)
|
|||
DEFVAR_LISP ("text-quoting-style", Vtext_quoting_style,
|
||||
doc: /* Style to use for single quotes in help and messages.
|
||||
|
||||
This works by substituting certain single quotes for grave accent and
|
||||
apostrophe. This is done in help output (but not for display of Info
|
||||
manuals) and in functions like `message' and `format-message'. It is
|
||||
not done in `format'.
|
||||
The value of this variable determines substitution of grave accents
|
||||
and apostrophes in help output (but not for display of Info
|
||||
manuals) and in functions like `message' and `format-message', but not
|
||||
in `format'.
|
||||
|
||||
Its value should be one of these symbols:
|
||||
The value should be one of these symbols:
|
||||
`curve': quote with curved single quotes ‘like this’.
|
||||
`straight': quote with straight apostrophes \\='like this\\='.
|
||||
`grave': quote with grave accent and apostrophe \\=`like this\\=';
|
||||
i.e., do not alter quote marks.
|
||||
i.e., do not alter the original quote marks.
|
||||
nil: like `curve' if curved single quotes are displayable,
|
||||
and like `grave' otherwise. */);
|
||||
and like `grave' otherwise. This is the default. */);
|
||||
Vtext_quoting_style = Qnil;
|
||||
|
||||
DEFVAR_BOOL ("internal--text-quoting-flag", text_quoting_flag,
|
||||
|
|
|
|||
Loading…
Reference in a new issue