Mercurial > emacs
changeset 73602:400169af8063
(Fcatch): Doc fix.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 01 Nov 2006 20:23:44 +0000 |
parents | e243e9889b8b |
children | e89055c0c7ab |
files | src/eval.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Wed Nov 01 19:26:14 2006 +0000 +++ b/src/eval.c Wed Nov 01 20:23:44 2006 +0000 @@ -1174,7 +1174,7 @@ TAG is evalled to get the tag to use; it must not be nil. Then the BODY is executed. -Within BODY, (throw TAG) with same tag exits BODY and exits this `catch'. +Within BODY, a call to `throw' with the same TAG exits BODY and this `catch'. If no throw happens, `catch' returns the value of the last BODY form. If a throw happens, it specifies the value to return from `catch'. usage: (catch TAG BODY...) */)