diff options
| author | Glenn Morris | 2012-10-24 20:58:40 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-10-24 20:58:40 -0400 |
| commit | a05cb6e32625355cceef4593321780836b76e348 (patch) | |
| tree | 2bb8de2b48419404176c052f686efd12ab4b9ff5 /lisp | |
| parent | a6880551db39f264286f6ba9bf9735665ea6b967 (diff) | |
| download | emacs-a05cb6e32625355cceef4593321780836b76e348.tar.gz emacs-a05cb6e32625355cceef4593321780836b76e348.zip | |
More cl doc updates
* doc/misc/cl.texi: Don't mess with the TeX section number counter.
Use Texinfo recommended convention for quotes+punctuation.
(Overview, Sequence Functions): Rephrase for better line-breaking.
(Time of Evaluation, Type Predicates, Modify Macros, Function Bindings)
(Macro Bindings, Conditionals, Iteration, Loop Basics)
(Random Numbers, Mapping over Sequences, Structures)
(Porting Common Lisp): Further updates for cl-lib namespace.
(Modify Macros, Declarations, Macro Bindings, Structures):
Break long lines in examples.
(Dynamic Bindings): Update for changed progv behavior.
(Loop Examples, Efficiency Concerns): Markup fixes.
(Structures): Remove TeX margin change.
* lisp/emacs-lisp/cl-macs.el (cl-progv): Doc fix.
* etc/NEWS: Related markup.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 07ce9cea1a3..1150b68fe0f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-10-25 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/cl-macs.el (cl-progv): Doc fix. | ||
| 4 | |||
| 1 | 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * minibuffer.el (minibuffer-force-complete): Use one more marker | 7 | * minibuffer.el (minibuffer-force-complete): Use one more marker |
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 592c33d21c5..a448973c1bb 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el | |||
| @@ -1603,7 +1603,7 @@ before assigning any symbols SYM to the corresponding values. | |||
| 1603 | "Bind SYMBOLS to VALUES dynamically in BODY. | 1603 | "Bind SYMBOLS to VALUES dynamically in BODY. |
| 1604 | The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists. | 1604 | The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists. |
| 1605 | Each symbol in the first list is bound to the corresponding value in the | 1605 | Each symbol in the first list is bound to the corresponding value in the |
| 1606 | second list (or made unbound if VALUES is shorter than SYMBOLS); then the | 1606 | second list (or to nil if VALUES is shorter than SYMBOLS); then the |
| 1607 | BODY forms are executed and their result is returned. This is much like | 1607 | BODY forms are executed and their result is returned. This is much like |
| 1608 | a `let' form, except that the list of symbols can be computed at run-time." | 1608 | a `let' form, except that the list of symbols can be computed at run-time." |
| 1609 | (declare (indent 2) (debug (form form body))) | 1609 | (declare (indent 2) (debug (form form body))) |