diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-03 08:02:16 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-05-03 08:03:04 -0700 |
commit | 2ea2a2f1a5b5b2e1b20f1ee8c86058334d0a2652 (patch) | |
tree | 0a7120c29c00676f6e8f3599227c2ecfc37b5e26 /doc/lispref/help.texi | |
parent | 8544b9879c652e7c700652a4ba6fd17245163bd4 (diff) | |
download | emacs-2ea2a2f1a5b5b2e1b20f1ee8c86058334d0a2652.tar.gz |
Doc fixes for quoting
* doc/emacs/text.texi, doc/lispintro/emacs-lisp-intro.texi:
* doc/lispref/control.texi, doc/lispref/display.texi:
* doc/lispref/help.texi, doc/lispref/strings.texi, lisp/subr.el:
* src/callint.c, src/doprnt.c, src/editfns.c:
Document quoting a bit more systematically.
Problem reported by Alan Mackenzie (Bug#23425).
Diffstat (limited to 'doc/lispref/help.texi')
-rw-r--r-- | doc/lispref/help.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/lispref/help.texi b/doc/lispref/help.texi index 58a11f29a4c..b945e438f55 100644 --- a/doc/lispref/help.texi +++ b/doc/lispref/help.texi @@ -335,10 +335,14 @@ specifies @var{mapvar}'s value as the keymap for any following @item ‘ @itemx ` (left single quotation mark and grave accent) both stand for a left quote. +This generates a left single quotation mark, an apostrophe, or a grave +accent depending on the value of @code{text-quoting-style}. @item ’ @itemx ' (right single quotation mark and apostrophe) both stand for a right quote. +This generates a right single quotation mark or an apostrophe +depending on the value of @code{text-quoting-style}. @item \= quotes the following character and is discarded; thus, @samp{\=`} puts |