aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGlenn Morris2012-10-24 20:58:40 -0400
committerGlenn Morris2012-10-24 20:58:40 -0400
commita05cb6e32625355cceef4593321780836b76e348 (patch)
tree2bb8de2b48419404176c052f686efd12ab4b9ff5 /etc
parenta6880551db39f264286f6ba9bf9735665ea6b967 (diff)
downloademacs-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/NEWS1
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index d891e28e7ef..b6f8cd92af1 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -332,6 +332,7 @@ The difference is that it relies on the `lexical-binding' machinery (as opposed
332to the `lexical-let' machinery used previously) to capture definitions in 332to the `lexical-let' machinery used previously) to capture definitions in
333closures, so such closures will only work if `lexical-binding' is in use. 333closures, 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.
336A side effect is that vars without corresponding value are bound to nil 337A side effect is that vars without corresponding value are bound to nil
337rather than making them unbound. 338rather than making them unbound.