aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2021-09-20 10:50:53 +0300
committerEli Zaretskii2021-09-20 10:50:53 +0300
commitb34dcd96e909cc73ae0ff50215ac2c3f18b5ab30 (patch)
tree941717a57b22f8f53b13cfa1689f964a4522020b /src
parent9e9db94423c0573edf283a0fc11f56d8d8025bf5 (diff)
downloademacs-b34dcd96e909cc73ae0ff50215ac2c3f18b5ab30.tar.gz
emacs-b34dcd96e909cc73ae0ff50215ac2c3f18b5ab30.zip
; * src/keyboard.c (Frecursive_edit): Minor fixes of the doc string.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 2d97429ade2..bc6f97586dd 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -754,16 +754,17 @@ DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
754To get out of the recursive edit, a command can throw to `exit' -- for 754To get out of the recursive edit, a command can throw to `exit' -- for
755instance (throw \\='exit nil). 755instance (throw \\='exit nil).
756 756
757The following values can be thrown to 'exit: 757The following values (last argument to `throw') can be used when
758throwing to \\='exit:
758 759
759- t causes `recursive-edit' to quit, so that control returns to the 760- t causes `recursive-edit' to quit, so that control returns to the
760 command loop one level up. 761 command loop one level up.
761 762
762- A string causes `recursive-edit' to signal an error, printing this 763- A string causes `recursive-edit' to signal an error, printing that
763 string as the message. 764 string as the error message.
764 765
765- A function causes `recursive-edit' to call this function without 766- A function causes `recursive-edit' to call that function with no
766 arguments before returning normally. 767 arguments, and then return normally.
767 768
768- Any other value causes `recursive-edit' to return normally to the 769- Any other value causes `recursive-edit' to return normally to the
769 function that called it. 770 function that called it.