1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

Improve text-quoting-style doc

This commit is contained in:
Paul Eggert 2015-11-23 19:22:42 -08:00
parent 004f4fc9d4
commit 946ea4184c
2 changed files with 5 additions and 3 deletions

View File

@ -352,8 +352,9 @@ string in Emacs Lisp.
@defvar text-quoting-style
@cindex curved quotes
@cindex curly quotes
The value of this variable specifies the style used to generate text
quotes. If the variable's value is @code{curve}, the style is
The value of this variable is a symbol that specifies the style Emacs
should use for single quotes in the wording of help and messages.
If the variable's value is @code{curve}, the style is
@t{like this} with curved single quotes. If the value is
@code{straight}, the style is @t{'like this'} with straight
apostrophes. If the value is @code{grave}, the style is @t{`like

View File

@ -1023,7 +1023,8 @@ syms_of_doc (void)
Vbuild_files = Qnil;
DEFVAR_LISP ("text-quoting-style", Vtext_quoting_style,
doc: /* Style to use for single quotes when generating text.
doc: /* Style to use for single quotes in help and messages.
Its value should be a symbol.
`curve' means quote with curved single quotes \\=like this\\=.
`straight' means quote with straight apostrophes \\='like this\\='.
`grave' means quote with grave accent and apostrophe \\=`like this\\='.