aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6abdf583b00..c333b6388c6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,19 @@
12010-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 Try and be more careful about propagation of lexical environment.
4 * eval.c (apply_lambda, funcall_lambda): Remove lexenv arg.
5 (Feval): Always eval in the empty environment.
6 (eval_sub): New function. Use it for all calls to Feval that should
7 evaluate in the lexical environment of the caller.
8 Pass `closure's as is to apply_lambda.
9 (Ffuncall): Pass `closure's as is to funcall_lambda.
10 (funcall_lambda): Extract lexenv for `closure's, when applicable.
11 Also use lexical scoping for the &rest argument, if applicable.
12 * lisp.h (eval_sub): Declare.
13 * lread.c (readevalloop): Remove `evalfun' argument.
14 * print.c (Fwith_output_to_temp_buffer):
15 * data.c (Fsetq_default): Use eval_sub.
16
12010-12-13 Stefan Monnier <monnier@iro.umontreal.ca> 172010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
2 18
3 Make the effect of (defvar foo) local. 19 Make the effect of (defvar foo) local.