annotate lisp/README @ 56104:a450e67752ed

(Vimage_types): Move from xdisp.c. (Vimage_type_cache): New variable. (define_image_type): New argument indicating whether an image library was loaded; cache loaded status and return t on success, nil otherwise. (CACHE_IMAGE_TYPE, ADD_IMAGE_TYPE): New macros. (w32_delayed_load): New function to load an image library from a list of possible filenames. (init_xpm_functions, init_png_functions, init_jpeg_functions) (init_tiff_functions, init_gif_functions): Use `w32_delayed_load'. (CHECK_LIB_AVAILABLE): Call `define_image_library' with new argument. (Finit_image_library): New function, extracted from `init_image'. Try to initialize an image library on demand and cache whether we were successful or not. (syms_of_image): Initialize `Vimage_types' and `Vimage_type_cache'. Add recognized image types to Vimage_types. Export `init-image-library'. (init_image): Remove initialization of all image types, except xbm and pbm.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 14 Jun 2004 20:47:25 +0000
parents 1ae53bd2e777
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
35378
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
1 This directory contains source code for the parts of Emacs that are
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
2 written in Emacs Lisp. *.el files are Emacs Lisp source, and the
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
3 corresponding *.elc files are byte-compiled versions. Byte-compiled
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
4 files are architecture-independent.
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
5
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
6 The term subdirectory contains Lisp files that customize Emacs for
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
7 certain terminal types. When Emacs starts, it checks the TERM
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
8 environment variable to get the terminal type and loads
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
9 `term/${TERM}.el' if it exists.
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
10
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
11 The other subdirectories hold Lisp packages grouped by their general
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
12 purpose.
1ae53bd2e777 *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
13