comparison src/w32term.c @ 34869:1d671133e618

(syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars instead of x-toolkit-scroll-bars-p. (Vx_toolkit_scroll_bars): Renamed from x_toolkit_scroll_bars_p.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 27 Dec 2000 14:33:11 +0000
parents ace8dd8cf098
children c048304a388f
comparison
equal deleted inserted replaced
34868:f3c217d2fc2e 34869:1d671133e618
143 static HBITMAP ov_bmp; 143 static HBITMAP ov_bmp;
144 144
145 extern Lisp_Object Qhelp_echo; 145 extern Lisp_Object Qhelp_echo;
146 146
147 147
148 /* Non-zero means Emacs uses toolkit scroll bars. */ 148 /* Non-nil means Emacs uses toolkit scroll bars. */
149 149
150 int x_toolkit_scroll_bars_p; 150 Lisp_Object Vx_toolkit_scroll_bars;
151 151
152 /* If a string, w32_read_socket generates an event to display that string. 152 /* If a string, w32_read_socket generates an event to display that string.
153 (The display is done in read_char.) */ 153 (The display is done in read_char.) */
154 154
155 static Lisp_Object help_echo; 155 static Lisp_Object help_echo;
10357 "*Non-nil means draw block cursor as wide as the glyph under it.\n\ 10357 "*Non-nil means draw block cursor as wide as the glyph under it.\n\
10358 For example, if a block cursor is over a tab, it will be drawn as\n\ 10358 For example, if a block cursor is over a tab, it will be drawn as\n\
10359 wide as that tab on the display."); 10359 wide as that tab on the display.");
10360 x_stretch_cursor_p = 0; 10360 x_stretch_cursor_p = 0;
10361 10361
10362 DEFVAR_BOOL ("x-toolkit-scroll-bars-p", &x_toolkit_scroll_bars_p, 10362 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
10363 "If not nil, Emacs uses toolkit scroll bars."); 10363 "If not nil, Emacs uses toolkit scroll bars.");
10364 x_toolkit_scroll_bars_p = 1; 10364 Vx_toolkit_scroll_bars = Qt;
10365 10365
10366 staticpro (&last_mouse_motion_frame); 10366 staticpro (&last_mouse_motion_frame);
10367 last_mouse_motion_frame = Qnil; 10367 last_mouse_motion_frame = Qnil;
10368 } 10368 }