comparison src/xdisp.c @ 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 f8b0ac62f238
children af50e87cc257
comparison
equal deleted inserted replaced
28983:6bf3edbe4eba 28984:540ca0531c77
514 514
515 /* Non-zero means automatically scroll windows horizontally to make 515 /* Non-zero means automatically scroll windows horizontally to make
516 point visible. */ 516 point visible. */
517 517
518 int automatic_hscrolling_p; 518 int automatic_hscrolling_p;
519
520 /* A list of symbols, one for each supported image type. */
521
522 Lisp_Object Vimage_types;
519 523
520 /* Value returned from text property handlers (see below). */ 524 /* Value returned from text property handlers (see below). */
521 525
522 enum prop_handled 526 enum prop_handled
523 { 527 {
13118 cursor_in_non_selected_windows = 1; 13122 cursor_in_non_selected_windows = 1;
13119 13123
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\
13130 Each element of the list is a symbol for a supported image type.");
13131 Vimage_types = Qnil;
13123 } 13132 }
13124 13133
13125 13134
13126 /* Initialize this module when Emacs starts. */ 13135 /* Initialize this module when Emacs starts. */
13127 13136