diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-30 19:44:41 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-30 19:45:05 -0700 |
commit | 6f40b8b23a7c4dcc1ad07e0ad9d32609d21c9f79 (patch) | |
tree | 976ce8988c55fe60168ff53ca0a9fdaa988a6452 /lisp/electric.el | |
parent | 6cf3ee3d5474a61d6615a6a21d9e7723f7ba9151 (diff) | |
download | emacs-6f40b8b23a7c4dcc1ad07e0ad9d32609d21c9f79.tar.gz emacs-6f40b8b23a7c4dcc1ad07e0ad9d32609d21c9f79.tar.bz2 emacs-6f40b8b23a7c4dcc1ad07e0ad9d32609d21c9f79.zip |
Minor doc quoting fixes
* doc/misc/htmlfontify.texi (Interactive):
* lisp/htmlfontify.el (htmlfontify-buffer):
Spell out character names, for clarity. The old doc string
generated the *Help* text ‘^L ([FF]) or ¤ (244)’, where ‘[FF]’
stands for a form feed character; this was confusing.
* lisp/electric.el (electric-quote-mode):
* src/doc.c (syms_of_doc):
* src/editfns.c (Fformat_message):
Remove no-longer-necessary ‘\=’s in doc strings.
Diffstat (limited to 'lisp/electric.el')
-rw-r--r-- | lisp/electric.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/electric.el b/lisp/electric.el index e2896010405..0ec0a1efba1 100644 --- a/lisp/electric.el +++ b/lisp/electric.el @@ -491,7 +491,7 @@ With a prefix argument ARG, enable Electric Quote mode if ARG is positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. -When enabled, as you type this replaces \\=` with \\=‘, \\=' with \\=’, +When enabled, as you type this replaces \\=` with ‘, \\=' with ’, \\=`\\=` with “, and \\='\\=' with ”. This occurs only in comments, strings, and text paragraphs, and these are selectively controlled with `electric-quote-comment', `electric-quote-string', and |