aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGlenn Morris2012-11-03 11:55:29 -0700
committerGlenn Morris2012-11-03 11:55:29 -0700
commit92246540b0616afd90600aabbac964f5a0b544ca (patch)
tree0216f1eef769ce1a565f3ea5e4f10176a7d2242c /etc
parent491384001301d37b038f3ee074b13f658d094966 (diff)
downloademacs-92246540b0616afd90600aabbac964f5a0b544ca.tar.gz
emacs-92246540b0616afd90600aabbac964f5a0b544ca.zip
Further small cl.texi changes
* doc/misc/cl.texi (Creating Symbols, Random Numbers): De-emphasize internal variables cl--gensym-counter and cl--random-state. * etc/NEWS: Related edits. Fixes: debbugs:12788
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 9ece829217f..4f8b56cb363 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -302,6 +302,7 @@ Customize `cal-html-holidays' to change this.
302 302
303** CL 303** CL
304 304
305+++
305*** CL's main entry is now (require 'cl-lib). 306*** CL's main entry is now (require 'cl-lib).
306`cl-lib' is like the old `cl' except that it uses the namespace cleanly, 307`cl-lib' is like the old `cl' except that it uses the namespace cleanly,
307i.e. all its definitions have the "cl-" prefix (and internal definitions use 308i.e. all its definitions have the "cl-" prefix (and internal definitions use
@@ -312,8 +313,8 @@ under the name `cl-foo' instead, with the exceptions of the few definitions
312that had to use `foo*' to avoid conflicts with pre-existing Elisp entities, 313that had to use `foo*' to avoid conflicts with pre-existing Elisp entities,
313which have not been renamed to `cl-foo*' but just `cl-foo'. 314which have not been renamed to `cl-foo*' but just `cl-foo'.
314 315
315The old `cl' is now deprecated and is just a bunch of aliases that 316The old `cl' is now deprecated and is mainly just a bunch of aliases that
316provide the old non-prefixed names. 317provide the old non-prefixed names. Some exceptions are listed below.
317 318
318+++ 319+++
319*** `cl-flet' is not like `flet' (which is deprecated). 320*** `cl-flet' is not like `flet' (which is deprecated).