]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispref/control.texi (Catch and Throw): Add xref to cl.texi.
authorGlenn Morris <rgm@gnu.org>
Wed, 31 Oct 2012 21:00:57 +0000 (17:00 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 31 Oct 2012 21:00:57 +0000 (17:00 -0400)
doc/lispref/ChangeLog
doc/lispref/control.texi

index 8453998e98f29d6c55d6938145b93a07e6884534..da3cc91a6750a63fe122174eb4124b57e5936151 100644 (file)
@@ -1,5 +1,7 @@
 2012-10-31  Glenn Morris  <rgm@gnu.org>
 
+       * control.texi (Catch and Throw): Add xref to cl.texi.
+
        * lists.texi (Sets And Lists): Point xref to better location.
 
        * errors.texi (Standard Errors):
index 25a7655b7b82e62f70efe3ff4f5acfb64f4a1264..cf393b59c4969e5a8ea76074ab6effe8680e1984 100644 (file)
@@ -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{}