diff options
| author | Glenn Morris | 2012-10-31 17:00:57 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-10-31 17:00:57 -0400 |
| commit | 88390adf4088a332a4c0c9659b3cc3ae87eef30a (patch) | |
| tree | c596150aa29f7481fcfa97d088cb8e624eb886c4 /doc | |
| parent | aec5e6f9fe9054003a3c985163493196ba133955 (diff) | |
| download | emacs-88390adf4088a332a4c0c9659b3cc3ae87eef30a.tar.gz emacs-88390adf4088a332a4c0c9659b3cc3ae87eef30a.zip | |
* doc/lispref/control.texi (Catch and Throw): Add xref to cl.texi.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/lispref/control.texi | 3 |
2 files changed, 4 insertions, 1 deletions
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 @@ | |||
| 1 | 2012-10-31 Glenn Morris <rgm@gnu.org> | 1 | 2012-10-31 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * control.texi (Catch and Throw): Add xref to cl.texi. | ||
| 4 | |||
| 3 | * lists.texi (Sets And Lists): Point xref to better location. | 5 | * lists.texi (Sets And Lists): Point xref to better location. |
| 4 | 6 | ||
| 5 | * errors.texi (Standard Errors): | 7 | * 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}). | |||
| 578 | @b{Common Lisp note:} Most other versions of Lisp, including Common Lisp, | 578 | @b{Common Lisp note:} Most other versions of Lisp, including Common Lisp, |
| 579 | have several ways of transferring control nonsequentially: @code{return}, | 579 | have several ways of transferring control nonsequentially: @code{return}, |
| 580 | @code{return-from}, and @code{go}, for example. Emacs Lisp has only | 580 | @code{return-from}, and @code{go}, for example. Emacs Lisp has only |
| 581 | @code{throw}. | 581 | @code{throw}. The @file{cl-lib} library provides versions of some of |
| 582 | these. @xref{Blocks and Exits,,,cl,Common Lisp Extensions}. | ||
| 582 | @end quotation | 583 | @end quotation |
| 583 | 584 | ||
| 584 | @defspec catch tag body@dots{} | 585 | @defspec catch tag body@dots{} |