aboutsummaryrefslogtreecommitdiffstats
path: root/src/xdisp.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-05-19 11:52:59 +0000
committerGerd Moellmann <[email protected]>2000-05-19 11:52:59 +0000
commite00daaa0ce587d126ee69362670767cc0ae4b31b (patch)
tree1f48e574902dbb1c82ba14e7ef02403c6e5ac716 /src/xdisp.c
parentc6718dc4f56af4aed27711aba2eb5ad9ddc37667 (diff)
(Vimage_types): Moved here from xfns.c.
(syms_of_xdisp): Move `image-types' variable here from xfns.c.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r--src/xdisp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 411f621359..30f7a00ec0 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -517,6 +517,10 @@ int trace_redisplay_p;
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 @@ Nil means don't display a cursor there.");
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;
}