diff options
| author | Paul Eggert | 2015-06-21 12:34:11 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-06-21 12:38:08 -0700 |
| commit | 38bb9ff0f4b92836199d8b3a0ee3903428bb7851 (patch) | |
| tree | 9bd50f9fc54b5996c8d5ef374b58a8f1538b399d /src | |
| parent | 8b6d82d3ca86f76ed964063b3941a7c6ab0bf1c6 (diff) | |
| download | emacs-38bb9ff0f4b92836199d8b3a0ee3903428bb7851.tar.gz emacs-38bb9ff0f4b92836199d8b3a0ee3903428bb7851.zip | |
Fix some “nested” quoting confusion in doc strings
* lisp/emacs-lisp/advice.el (ad-map-arglists):
* lisp/kermit.el (kermit-clean-on):
* lisp/mh-e/mh-comp.el (mh-repl-group-formfile):
* src/keyboard.c (Frecursive_edit):
Use curved quotes when quoting text containing apostrophe,
so that the apostrophe isn't curved in the output.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 23f7ce77143..9f42ad1fb0f 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -758,11 +758,11 @@ force_auto_save_soon (void) | |||
| 758 | 758 | ||
| 759 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | 759 | DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", |
| 760 | doc: /* Invoke the editor command loop recursively. | 760 | doc: /* Invoke the editor command loop recursively. |
| 761 | To get out of the recursive edit, a command can throw to `exit' -- for | 761 | To get out of the recursive edit, a command can throw to ‘exit’ -- for |
| 762 | instance `(throw 'exit nil)'. | 762 | instance ‘(throw 'exit nil)’. |
| 763 | If you throw a value other than t, `recursive-edit' returns normally | 763 | If you throw a value other than t, ‘recursive-edit’ returns normally |
| 764 | to the function that called it. Throwing a t value causes | 764 | to the function that called it. Throwing a t value causes |
| 765 | `recursive-edit' to quit, so that control returns to the command loop | 765 | ‘recursive-edit’ to quit, so that control returns to the command loop |
| 766 | one level up. | 766 | one level up. |
| 767 | 767 | ||
| 768 | This function is called by the editor initialization to begin editing. */) | 768 | This function is called by the editor initialization to begin editing. */) |