From: Glenn Morris <rgm@gnu.org> Date: Wed, 31 Oct 2012 21:00:57 +0000 (-0400) Subject: * doc/lispref/control.texi (Catch and Throw): Add xref to cl.texi. X-Git-Tag: emacs-24.2.90~194 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=88390adf4088a332a4c0c9659b3cc3ae87eef30a;p=emacs.git * doc/lispref/control.texi (Catch and Throw): Add xref to cl.texi. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 8453998e98f..da3cc91a675 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -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): 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{}