]> git.eshelyaron.com Git - emacs.git/commitdiff
(Vimage_types): Moved here from xfns.c.
authorGerd Moellmann <gerd@gnu.org>
Fri, 19 May 2000 11:52:59 +0000 (11:52 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 19 May 2000 11:52:59 +0000 (11:52 +0000)
(syms_of_xdisp): Move `image-types' variable here from xfns.c.

src/xdisp.c

index 411f62135910248172bf4ee7fce9060fd079c723..30f7a00ec01249795eb78a30d395d745a3c0ad38 100644 (file)
@@ -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;
 }