aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorJoakim Verona2012-05-31 19:54:01 +0200
committerJoakim Verona2012-05-31 19:54:01 +0200
commitfc1f1f2ea1ceac41f81855e14a490db107d88681 (patch)
tree853798b1704f9de86e02ad87d77f2b1e8d56dda8 /lisp/ChangeLog
parent664e085984f192584c5b3c61495784a11d2ba6c1 (diff)
parent32d72c2f5d7554ee2f1d37bb8aa210ee07165f25 (diff)
downloademacs-fc1f1f2ea1ceac41f81855e14a490db107d88681.tar.gz
emacs-fc1f1f2ea1ceac41f81855e14a490db107d88681.zip
upstream
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog45
1 files changed, 43 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 62405960593..c2c6e0da37b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,9 +1,50 @@
12012-05-31 Glenn Morris <rgm@gnu.org>
2
3 * image.el: For clarity, call imagemagick-register-types at
4 top-level, rather than relying on a custom :initialize.
5 (imagemagick-types-enable): New option. (Bug#11557)
6 (imagemagick-register-types): Respect imagemagick-types-inhibit.
7 If disabling support, remove elements altogether rather
8 than using an impossible regexp.
9 (imagemagick-types-inhibit): Give it the default init function.
10
112012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12
13 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Handle
14 arbitrary file name lengths (Bug#11585).
15
162012-05-31 Martin Rudalics <rudalics@gmx.at>
17
18 * desktop.el (desktop-read): Clear previous and next buffers for
19 all windows and bury *Messages* buffer (bug#11556).
20
212012-05-31 Eli Zaretskii <eliz@gnu.org>
22
23 * mail/sendmail.el (mail-yank-region): Recognize
24 rmail-yank-current-message in addition to insert-buffer. Fixes
25 mail-mode's "C-c C-r" that otherwise does nothing when invoked in
26
272012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
28
29 Add `declare' for `defun'. Align `defmacro's with it.
30 * emacs-lisp/easy-mmode.el (define-minor-mode)
31 (define-globalized-minor-mode): Don't autoload the var definitions.
32 * emacs-lisp/byte-run.el: Use lexical-binding.
33 (defun-declarations-alist, macro-declarations-alist): New vars.
34 (defmacro, defun): Use them.
35 (make-obsolete, define-obsolete-function-alias)
36 (make-obsolete-variable, define-obsolete-variable-alias):
37 Use `declare'.
38 (macro-declaration-function): Mark obsolete.
39 * emacs-lisp/autoload.el: Use lexical-binding.
40 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
41
12012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es> 422012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2 43
3 * textmodes/ispell.el (ispell-with-no-warnings): 44 * textmodes/ispell.el (ispell-with-no-warnings):
4 Define as a macro. 45 Define as a macro.
5 (ispell-kill-ispell, ispell-change-dictionary): Use 46 (ispell-kill-ispell, ispell-change-dictionary):
6 `called-interactively-p' for Emacs instead of obsolete 47 Use `called-interactively-p' for Emacs instead of obsolete
7 `interactive-p'. 48 `interactive-p'.
8 49
92012-05-30 Stefan Monnier <monnier@iro.umontreal.ca> 502012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>