summaryrefslogtreecommitdiff
path: root/doc/lispref/control.texi
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-10-31 17:00:57 -0400
committerGlenn Morris <rgm@gnu.org>2012-10-31 17:00:57 -0400
commit88390adf4088a332a4c0c9659b3cc3ae87eef30a (patch)
treec596150aa29f7481fcfa97d088cb8e624eb886c4 /doc/lispref/control.texi
parentaec5e6f9fe9054003a3c985163493196ba133955 (diff)
downloademacs-88390adf4088a332a4c0c9659b3cc3ae87eef30a.tar.gz
* doc/lispref/control.texi (Catch and Throw): Add xref to cl.texi.
Diffstat (limited to 'doc/lispref/control.texi')
-rw-r--r--doc/lispref/control.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 25a7655b7b8..cf393b59c49 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -578,7 +578,8 @@ that throw back to the editor command loop (@pxref{Recursive Editing}).
@b{Common Lisp note:} Most other versions of Lisp, including Common Lisp,
have several ways of transferring control nonsequentially: @code{return},
@code{return-from}, and @code{go}, for example. Emacs Lisp has only
-@code{throw}.
+@code{throw}. The @file{cl-lib} library provides versions of some of
+these. @xref{Blocks and Exits,,,cl,Common Lisp Extensions}.
@end quotation
@defspec catch tag body@dots{}