aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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