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 /etc | |
| 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 'etc')
| -rw-r--r-- | etc/NEWS | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -332,6 +332,7 @@ The difference is that it relies on the `lexical-binding' machinery (as opposed | |||
| 332 | to the `lexical-let' machinery used previously) to capture definitions in | 332 | to the `lexical-let' machinery used previously) to capture definitions in |
| 333 | closures, so such closures will only work if `lexical-binding' is in use. | 333 | closures, so such closures will only work if `lexical-binding' is in use. |
| 334 | 334 | ||
| 335 | +++ | ||
| 335 | *** `progv' was rewritten to use the `let' machinery. | 336 | *** `progv' was rewritten to use the `let' machinery. |
| 336 | A side effect is that vars without corresponding value are bound to nil | 337 | A side effect is that vars without corresponding value are bound to nil |
| 337 | rather than making them unbound. | 338 | rather than making them unbound. |