Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
f16a3d52
Commit
f16a3d52
authored
Feb 02, 2014
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* doc/misc/cl.texi (Blocks and Exits): Mention cl-tagbody.
* etc/NEWS: Related edit.
parent
eb9b8ff6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
0 deletions
+19
-0
doc/misc/ChangeLog
doc/misc/ChangeLog
+4
-0
doc/misc/cl.texi
doc/misc/cl.texi
+13
-0
etc/NEWS
etc/NEWS
+2
-0
No files found.
doc/misc/ChangeLog
View file @
f16a3d52
2014-02-03 Glenn Morris <rgm@gnu.org>
* cl.texi (Blocks and Exits): Mention cl-tagbody.
2014-02-02 Glenn Morris <rgm@gnu.org>
* efaq-w32.texi (Tramp ssh): Remove deleted tramp methods.
...
...
doc/misc/cl.texi
View file @
f16a3d52
...
...
@@ -1556,6 +1556,19 @@ Common Lisp loops like @code{cl-do} and @code{cl-dolist} implicitly enclose
themselves in @code{nil} blocks.
@end defmac
@c FIXME? Maybe this should be in a separate section?
@defmac cl-tagbody &rest labels-or-statements
This macro executes statements while allowing for control transfer to
user-defined labels. Each element of @var{labels-or-statements} can
be either a label (an integer or a symbol), or a cons-cell
(a statement). This distinction is made before macroexpansion.
Statements are executed in sequence, discarding any return value.
Any statement can transfer control at any time to the statements that follow
one of the labels with the special form @code{(go LABEL)}.
Labels have lexical scope and dynamic extent.
@end defmac
@node Iteration
@section Iteration
...
...
etc/NEWS
View file @
f16a3d52
...
...
@@ -424,7 +424,9 @@ For example, this enables parsing of macros that open new namespaces.
**
cl
-
lib
+++
***
New
macro
`
cl
-
tagbody
'.
This executes statements while allowing for control transfer to labels.
+++
*** letf is now just an alias for cl-letf.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment