comparison src/xdisp.c @ 56105:a64ca0d0e4c5

(Vimage_types): Delete (moved to image.c).
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 14 Jun 2004 20:49:05 +0000
parents f1d6a507dcfd
children 6fbabfb26a3c c5bae78b527c
comparison
equal deleted inserted replaced
56104:a450e67752ed 56105:a64ca0d0e4c5
667 horizontally. */ 667 horizontally. */
668 EMACS_INT hscroll_margin; 668 EMACS_INT hscroll_margin;
669 669
670 /* How much to scroll horizontally when point is inside the above margin. */ 670 /* How much to scroll horizontally when point is inside the above margin. */
671 Lisp_Object Vhscroll_step; 671 Lisp_Object Vhscroll_step;
672
673 /* A list of symbols, one for each supported image type. */
674
675 Lisp_Object Vimage_types;
676 672
677 /* The variable `resize-mini-windows'. If nil, don't resize 673 /* The variable `resize-mini-windows'. If nil, don't resize
678 mini-windows. If t, always resize them to fit the text they 674 mini-windows. If t, always resize them to fit the text they
679 display. If `grow-only', let mini-windows grow only until they 675 display. If `grow-only', let mini-windows grow only until they
680 become empty. */ 676 become empty. */
22257 22253
22258 Note that the lower bound for automatic hscrolling specified by `scroll-left' 22254 Note that the lower bound for automatic hscrolling specified by `scroll-left'
22259 and `scroll-right' overrides this variable's effect. */); 22255 and `scroll-right' overrides this variable's effect. */);
22260 Vhscroll_step = make_number (0); 22256 Vhscroll_step = make_number (0);
22261 22257
22262 DEFVAR_LISP ("image-types", &Vimage_types,
22263 doc: /* List of supported image types.
22264 Each element of the list is a symbol for a supported image type. */);
22265 Vimage_types = Qnil;
22266
22267 DEFVAR_BOOL ("message-truncate-lines", &message_truncate_lines, 22258 DEFVAR_BOOL ("message-truncate-lines", &message_truncate_lines,
22268 doc: /* If non-nil, messages are truncated instead of resizing the echo area. 22259 doc: /* If non-nil, messages are truncated instead of resizing the echo area.
22269 Bind this around calls to `message' to let it take effect. */); 22260 Bind this around calls to `message' to let it take effect. */);
22270 message_truncate_lines = 0; 22261 message_truncate_lines = 0;
22271 22262