diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-06-13 18:24:52 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-06-13 18:24:52 -0400 |
commit | de0503df97a507a523a192e877a8d5c7439c4846 (patch) | |
tree | 0753a678f85a7ea1a2eb46b81067e8a5d6dfc1e0 /src/ChangeLog | |
parent | bc5c8c5a6a1956122284468879862b1850dc3b5d (diff) | |
download | emacs-de0503df97a507a523a192e877a8d5c7439c4846.tar.gz |
* lisp/subr.el (with-eval-after-load): New macro.
(eval-after-load): Allow form to be a function.
take advantage of lexical-binding.
(do-after-load-evaluation): Use dolist and adjust to new format.
* lisp/simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
* doc/lispref/loading.texi (Hooks for Loading): Document with-eval-after-load
instead of eval-after-load. Don't document after-load-alist.
* src/lread.c (syms_of_lread):
* src/fns.c (Fprovide): Adjust to new format of after-load-alist.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r-- | src/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4d6e669612f..827092e7f8a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca> + + * lread.c (syms_of_lread): + * fns.c (Fprovide): Adjust to new format of after-load-alist. + 2013-06-13 Kelly Dean <kellydeanch@yahoo.com> (tiny change) * fileio.c (Fdo_auto_save): Trap errors in auto-save-hook. (Bug#14479) |