diff options
| author | Stefan Monnier | 2012-11-20 15:06:17 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2012-11-20 15:06:17 -0500 |
| commit | eadf1faa3cb5eea8c25a5166a9a97ebd63525c56 (patch) | |
| tree | c5b92de52e664400cbc79f7dd344cbf440fb7e2a /src/ChangeLog | |
| parent | 2e31777bd1354d22319cf6de4085ccc362cff42c (diff) | |
| download | emacs-eadf1faa3cb5eea8c25a5166a9a97ebd63525c56.tar.gz emacs-eadf1faa3cb5eea8c25a5166a9a97ebd63525c56.zip | |
Conflate Qnil and Qunbound for `symbol-function'.
* src/alloc.c (Fmake_symbol): Initialize `function' to Qnil.
* src/lread.c (init_obarray): Set `function' fields to Qnil.
* src/eval.c (Fcommandp): Ignore Qunbound.
(Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
* src/data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
Test NILP rather than Qunbound.
(Ffmakunbound): Set to Qnil.
(Fsymbol_function): Never signal an error.
(Finteractive_form): Ignore Qunbound.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9a2cec8a7fc..332656fcf00 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | Conflate Qnil and Qunbound for `symbol-function'. | ||
| 4 | * alloc.c (Fmake_symbol): Initialize `function' to Qnil. | ||
| 5 | * lread.c (init_obarray): Set `function' fields to Qnil. | ||
| 6 | * eval.c (Fcommandp): Ignore Qunbound. | ||
| 7 | (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand): | ||
| 8 | * data.c (Ffset, Ffboundp, indirect_function, Findirect_function): | ||
| 9 | Test NILP rather than Qunbound. | ||
| 10 | (Ffmakunbound): Set to Qnil. | ||
| 11 | (Fsymbol_function): Never signal an error. | ||
| 12 | (Finteractive_form): Ignore Qunbound. | ||
| 13 | |||
| 1 | 2012-11-20 Paul Eggert <eggert@cs.ucla.edu> | 14 | 2012-11-20 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 15 | ||
| 3 | * eval.c (interactive_p): Remove no-longer-used decl. | 16 | * eval.c (interactive_p): Remove no-longer-used decl. |