aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJuanma Barranquero2010-10-13 16:50:06 +0200
committerJuanma Barranquero2010-10-13 16:50:06 +0200
commit2e288d54f05ba6e72a227ed3857a8098ca585b50 (patch)
tree721182610fc404c5469c5dcf6375b0b95692fad5 /etc
parentd0e0de31a6628cd38c69f555aebab0a49ff64418 (diff)
downloademacs-2e288d54f05ba6e72a227ed3857a8098ca585b50.tar.gz
emacs-2e288d54f05ba6e72a227ed3857a8098ca585b50.zip
Rename `image-library-alist' to `dynamic-library-alist'.
* etc/NEWS: Mention `dynamic-library-alist'. * lisp/image.el (image-library-alist): Declare as obsolete alias. (image-type-available-p): Use `dynamic-library-alist'. * lisp/term/w32-win.el (dynamic-library-alist): Use instead of `image-library-alist'. * nt/INSTALL: Refer to `dynamic-library-alist'. * src/image.c (Vimage_library_alist) (syms_of_image) <image-library-alist>: Move to src/emacs.c and rename. (lookup_image_type): Use Vdynamic_library_alist. (Finit_image_library): Doc fix. * src/emacs.c (Vdynamic_library_alist) (syms_of_emacs) <dynamic-library-alist>: Move from src/image.c and rename. Doc fix. * src/lisp.h (Vdynamic_library_alist): Declare extern.
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS5
2 files changed, 9 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 766929b42b5..037c9eab266 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12010-10-13 Juanma Barranquero <lekktu@gmail.com>
2
3 * NEWS: Mention `dynamic-library-alist'.
4
12010-10-13 Glenn Morris <rgm@gnu.org> 52010-10-13 Glenn Morris <rgm@gnu.org>
2 6
3 * NEXTSTEP: New file, extracted from ../nextstep/{AUTHORS,README}. 7 * NEXTSTEP: New file, extracted from ../nextstep/{AUTHORS,README}.
diff --git a/etc/NEWS b/etc/NEWS
index 7ee81f9b81d..d9d84b9ce19 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -578,6 +578,11 @@ sc.el, x-menu.el, rnews.el, rnewspost.el
578 578
579* Lisp changes in Emacs 24.1 579* Lisp changes in Emacs 24.1
580 580
581** `image-library-alist' is renamed to `dynamic-library-alist'.
582The variable is now used to load all kind of supported dynamic libraries,
583not just image libraries. The previous name is still available as an
584obsolete alias.
585
581** New variable syntax-propertize-function to set syntax-table properties. 586** New variable syntax-propertize-function to set syntax-table properties.
582Replaces font-lock-syntactic-keywords which are now obsolete. 587Replaces font-lock-syntactic-keywords which are now obsolete.
583This allows syntax-table properties to be set independently from font-lock: 588This allows syntax-table properties to be set independently from font-lock: