summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-11-15 23:43:24 -0800
committerGlenn Morris <rgm@gnu.org>2012-11-15 23:43:24 -0800
commite8693c969a822ad8192f2410fbf9a949a723ddce (patch)
tree1be1a519b558105319659173edf23156ce23278d /etc
parentdedd188497e04b8f0c1ade515e41511759316d2d (diff)
downloademacs-e8693c969a822ad8192f2410fbf9a949a723ddce.tar.gz
cl.texi flet clarification
* doc/misc/cl.texi (Function Bindings): Clarify that cl-flet is lexical. (Obsolete Macros): Move example here from Function Bindings. * etc/NEWS: Related edit.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index b69240e081a..ba6dc68d72c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -320,6 +320,8 @@ provide the old non-prefixed names. Some exceptions are listed below.
+++
*** `cl-flet' is not like `flet' (which is deprecated).
Instead it obeys the behavior of Common-Lisp's `flet'.
+In particular, in cl-flet function definitions are lexically scoped,
+whereas in flet the scoping is dynamic.
+++
*** `cl-labels' is slightly different from `labels'.