* doc/lispref/tips.texi (Documentation Tips): Fix quotes. (Bug#34372)

This commit is contained in:
Eli Zaretskii 2019-02-07 19:49:57 +02:00
parent 3e49a080e5
commit e9ff190531

View file

@ -679,10 +679,15 @@ starting double-quote is not part of the string!
@cindex curly quotes @cindex curly quotes
@cindex curved quotes @cindex curved quotes
When a documentation string refers to a Lisp symbol, write it as it When a documentation string refers to a Lisp symbol, write it as it
would be printed (which usually means in lower case), surrounding would be printed (which usually means in lower case), surrounding it
it with curved single quotes (@t{} and @t{}). There are with curved single quotes (@t{..}). There are two exceptions: write
two exceptions: write @code{t} and @code{nil} without surrounding @code{t} and @code{nil} without surrounding punctuation. For example:
punctuation. For example: @samp{CODE can be lambda, nil, or t}.
@example
CODE can be lambda, nil, or t.
@end example
@noindent
@xref{Quotation Marks,,, emacs, The GNU Emacs Manual}, for how to @xref{Quotation Marks,,, emacs, The GNU Emacs Manual}, for how to
enter curved single quotes. enter curved single quotes.