]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/keyboard.c (Frecursive_edit): Minor fixes of the doc string.
authorEli Zaretskii <eliz@gnu.org>
Mon, 20 Sep 2021 07:50:53 +0000 (10:50 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 20 Sep 2021 07:50:53 +0000 (10:50 +0300)
src/keyboard.c

index 2d97429ade252babc486178176f9d95ae03fc165..bc6f97586dd3e8772069b757e432510794083bd6 100644 (file)
@@ -754,16 +754,17 @@ DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
 To get out of the recursive edit, a command can throw to `exit' -- for
 instance (throw \\='exit nil).
 
-The following values can be thrown to 'exit:
+The following values (last argument to `throw') can be used when
+throwing to \\='exit:
 
 - t causes `recursive-edit' to quit, so that control returns to the
   command loop one level up.
 
-- A string causes `recursive-edit' to signal an error, printing this
-  string as the message.
+- A string causes `recursive-edit' to signal an error, printing that
+  string as the error message.
 
-- A function causes `recursive-edit' to call this function without
-  arguments before returning normally.
+- A function causes `recursive-edit' to call that function with no
+  arguments, and then return normally.
 
 - Any other value causes `recursive-edit' to return normally to the
   function that called it.