Mercurial > emacs
changeset 28984:540ca0531c77
(Vimage_types): Moved here from xfns.c.
(syms_of_xdisp): Move `image-types' variable here from xfns.c.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 19 May 2000 11:52:59 +0000 |
parents | 6bf3edbe4eba |
children | 159b3efa8557 |
files | src/xdisp.c |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Fri May 19 11:52:17 2000 +0000 +++ b/src/xdisp.c Fri May 19 11:52:59 2000 +0000 @@ -517,6 +517,10 @@ int automatic_hscrolling_p; +/* A list of symbols, one for each supported image type. */ + +Lisp_Object Vimage_types; + /* Value returned from text property handlers (see below). */ enum prop_handled @@ -13120,6 +13124,11 @@ DEFVAR_BOOL ("automatic-hscrolling", &automatic_hscrolling_p, "*Non-nil means scroll the display automatically to make point visible."); automatic_hscrolling_p = 1; + + DEFVAR_LISP ("image-types", &Vimage_types, + "List of supported image types.\n\ +Each element of the list is a symbol for a supported image type."); + Vimage_types = Qnil; }