aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2015-06-21 12:34:11 -0700
committerPaul Eggert2015-06-21 12:38:08 -0700
commit38bb9ff0f4b92836199d8b3a0ee3903428bb7851 (patch)
tree9bd50f9fc54b5996c8d5ef374b58a8f1538b399d /src
parent8b6d82d3ca86f76ed964063b3941a7c6ab0bf1c6 (diff)
downloademacs-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.c8
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
759DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", 759DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
760 doc: /* Invoke the editor command loop recursively. 760 doc: /* Invoke the editor command loop recursively.
761To get out of the recursive edit, a command can throw to `exit' -- for 761To get out of the recursive edit, a command can throw to exit -- for
762instance `(throw 'exit nil)'. 762instance (throw 'exit nil).
763If you throw a value other than t, `recursive-edit' returns normally 763If you throw a value other than t, recursive-edit returns normally
764to the function that called it. Throwing a t value causes 764to the function that called it. Throwing a t value causes
765`recursive-edit' to quit, so that control returns to the command loop 765recursive-edit to quit, so that control returns to the command loop
766one level up. 766one level up.
767 767
768This function is called by the editor initialization to begin editing. */) 768This function is called by the editor initialization to begin editing. */)