diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-30 22:47:58 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-30 23:12:30 -0700 |
commit | b533552292e37a99862627651e11860c6ef5411c (patch) | |
tree | 2ca59b64a14042aa8c993fe3242c7622436a7b08 /doc/lispref/control.texi | |
parent | 4c24b9e30fd47b537ad08dcf298b5b1a39f20e50 (diff) | |
download | emacs-b533552292e37a99862627651e11860c6ef5411c.tar.gz |
Documentation fixes re quotes
Prefer curved quotes in examples if users will typically see
curved quotes when the examples run.
Mention format-message when appropriate.
Don’t use @code in examples.
Quote an apostrophe with @kbd.
Diffstat (limited to 'doc/lispref/control.texi')
-rw-r--r-- | doc/lispref/control.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 421f5cc530f..29d1bd588e3 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi @@ -315,7 +315,7 @@ between a few different constant values: @example (pcase (get-return-code x) (`success (message "Done!")) - (`would-block (message "Sorry, can't do it now")) + (`would-block (message "Sorry, can’t do it now")) (`read-only (message "The shmliblick is read-only")) (`access-denied (message "You do not have the needed rights")) (code (message "Unknown return code %S" code))) |