diff options
| author | Stefan Monnier | 2010-12-12 23:04:15 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2010-12-12 23:04:15 -0500 |
| commit | f07a954eeb0930029104402e706165bf89853576 (patch) | |
| tree | 143d5c5a95904a0559d555ae6fe97eaed7839211 /src/ChangeLog | |
| parent | 2c302df3a13236bfbf8ea1b771d13618fcda8d71 (diff) | |
| download | emacs-f07a954eeb0930029104402e706165bf89853576.tar.gz emacs-f07a954eeb0930029104402e706165bf89853576.zip | |
Make the effect of (defvar foo) local.
* src/eval.c (apply_lambda): Make static. Remove eval_flag arg.
(Fsetq): Don't check declared_special.
(Fdefun, Fdefmacro): Use Ffunction.
(Fdefvar): Don't set declared_special for (defvar foo).
(FletX): Check locally-special vars. Only do specbind once.
(Flet): Check locally-special vars.
(Feval): Don't check declared_special.
(funcall_lambda): Check locally-special vars.
* src/lisp.h (apply_lambda): Remove extern declaration.
* src/lread.c (readevalloop): CSE.
* lisp/subr.el (with-lexical-binding): Remove.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e1c0e6e5e9a..6abdf583b00 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2010-12-13 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | Make the effect of (defvar foo) local. | ||
| 4 | * eval.c (apply_lambda): Make static. Remove eval_flag arg. | ||
| 5 | (Fsetq): Don't check declared_special. | ||
| 6 | (Fdefun, Fdefmacro): Use Ffunction. | ||
| 7 | (Fdefvar): Don't set declared_special for (defvar foo). | ||
| 8 | (FletX): Check locally-special vars. Only do specbind once. | ||
| 9 | (Flet): Check locally-special vars. | ||
| 10 | (Feval): Don't check declared_special. | ||
| 11 | (funcall_lambda): Check locally-special vars. | ||
| 12 | * lisp.h (apply_lambda): Remove extern declaration. | ||
| 13 | * lread.c (readevalloop): CSE. | ||
| 14 | |||
| 1 | 2010-07-23 Andreas Schwab <schwab@linux-m68k.org> | 15 | 2010-07-23 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 16 | ||
| 3 | * eval.c (funcall_funvec): Replace bcopy by memcpy. | 17 | * eval.c (funcall_funvec): Replace bcopy by memcpy. |