aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-05-19 11:52:59 +0000
committerGerd Moellmann2000-05-19 11:52:59 +0000
commite00daaa0ce587d126ee69362670767cc0ae4b31b (patch)
tree1f48e574902dbb1c82ba14e7ef02403c6e5ac716 /src
parentc6718dc4f56af4aed27711aba2eb5ad9ddc37667 (diff)
downloademacs-e00daaa0ce587d126ee69362670767cc0ae4b31b.tar.gz
emacs-e00daaa0ce587d126ee69362670767cc0ae4b31b.zip
(Vimage_types): Moved here from xfns.c.
(syms_of_xdisp): Move `image-types' variable here from xfns.c.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 411f6213591..30f7a00ec01 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -517,6 +517,10 @@ int trace_redisplay_p;
517 517
518int automatic_hscrolling_p; 518int automatic_hscrolling_p;
519 519
520/* A list of symbols, one for each supported image type. */
521
522Lisp_Object Vimage_types;
523
520/* Value returned from text property handlers (see below). */ 524/* Value returned from text property handlers (see below). */
521 525
522enum prop_handled 526enum prop_handled
@@ -13120,6 +13124,11 @@ Nil means don't display a cursor there.");
13120 DEFVAR_BOOL ("automatic-hscrolling", &automatic_hscrolling_p, 13124 DEFVAR_BOOL ("automatic-hscrolling", &automatic_hscrolling_p,
13121 "*Non-nil means scroll the display automatically to make point visible."); 13125 "*Non-nil means scroll the display automatically to make point visible.");
13122 automatic_hscrolling_p = 1; 13126 automatic_hscrolling_p = 1;
13127
13128 DEFVAR_LISP ("image-types", &Vimage_types,
13129 "List of supported image types.\n\
13130Each element of the list is a symbol for a supported image type.");
13131 Vimage_types = Qnil;
13123} 13132}
13124 13133
13125 13134