diff options
| author | Juanma Barranquero | 2010-10-13 16:50:06 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-10-13 16:50:06 +0200 |
| commit | 2e288d54f05ba6e72a227ed3857a8098ca585b50 (patch) | |
| tree | 721182610fc404c5469c5dcf6375b0b95692fad5 /etc | |
| parent | d0e0de31a6628cd38c69f555aebab0a49ff64418 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 5 |
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 @@ | |||
| 1 | 2010-10-13 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * NEWS: Mention `dynamic-library-alist'. | ||
| 4 | |||
| 1 | 2010-10-13 Glenn Morris <rgm@gnu.org> | 5 | 2010-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}. |
| @@ -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'. | ||
| 582 | The variable is now used to load all kind of supported dynamic libraries, | ||
| 583 | not just image libraries. The previous name is still available as an | ||
| 584 | obsolete alias. | ||
| 585 | |||
| 581 | ** New variable syntax-propertize-function to set syntax-table properties. | 586 | ** New variable syntax-propertize-function to set syntax-table properties. |
| 582 | Replaces font-lock-syntactic-keywords which are now obsolete. | 587 | Replaces font-lock-syntactic-keywords which are now obsolete. |
| 583 | This allows syntax-table properties to be set independently from font-lock: | 588 | This allows syntax-table properties to be set independently from font-lock: |