comparison src/xterm.c @ 39988:eac4e9ae201c

Change doc-string comments to `new style' [w/`doc:' keyword].
author Miles Bader <miles@gnu.org>
date Wed, 17 Oct 2001 03:16:12 +0000
parents 579177964efa
children d505fb8b523f
comparison
equal deleted inserted replaced
39987:9c096889e4c6 39988:eac4e9ae201c
30 30
31 #include <stdio.h> 31 #include <stdio.h>
32 32
33 #ifdef HAVE_X_WINDOWS 33 #ifdef HAVE_X_WINDOWS
34 34
35 #define DOC_STRINGS_IN_COMMENTS
36 #include "lisp.h" 35 #include "lisp.h"
37 #include "blockinput.h" 36 #include "blockinput.h"
38 37
39 /* Need syssignal.h for various externs and definitions that may be required 38 /* Need syssignal.h for various externs and definitions that may be required
40 by some configurations for calls to signal later in this source file. */ 39 by some configurations for calls to signal later in this source file. */
14797 staticpro (&help_echo_window); 14796 staticpro (&help_echo_window);
14798 previous_help_echo = Qnil; 14797 previous_help_echo = Qnil;
14799 staticpro (&previous_help_echo); 14798 staticpro (&previous_help_echo);
14800 help_echo_pos = -1; 14799 help_echo_pos = -1;
14801 14800
14802 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p 14801 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
14803 /* *Non-nil means draw block cursor as wide as the glyph under it. 14802 doc: /* *Non-nil means draw block cursor as wide as the glyph under it.
14804 For example, if a block cursor is over a tab, it will be drawn as 14803 For example, if a block cursor is over a tab, it will be drawn as
14805 wide as that tab on the display. */); 14804 wide as that tab on the display. */);
14806 x_stretch_cursor_p = 0; 14805 x_stretch_cursor_p = 0;
14807 14806
14808 DEFVAR_BOOL ("x-use-underline-position-properties", 14807 DEFVAR_BOOL ("x-use-underline-position-properties",
14809 &x_use_underline_position_properties 14808 &x_use_underline_position_properties,
14810 /* *Non-nil means make use of UNDERLINE_POSITION font properties. 14809 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
14811 Nil means ignore them. If you encounter fonts with bogus 14810 Nil means ignore them. If you encounter fonts with bogus
14812 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior 14811 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
14813 to 4.1, set this to nil. */); 14812 to 4.1, set this to nil. */);
14814 x_use_underline_position_properties = 1; 14813 x_use_underline_position_properties = 1;
14815 14814
14816 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars 14815 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
14817 /* What X toolkit scroll bars Emacs uses. 14816 doc: /* What X toolkit scroll bars Emacs uses.
14818 A value of nil means Emacs doesn't use X toolkit scroll bars. 14817 A value of nil means Emacs doesn't use X toolkit scroll bars.
14819 Otherwise, value is a symbol describing the X toolkit. */); 14818 Otherwise, value is a symbol describing the X toolkit. */);
14820 #ifdef USE_TOOLKIT_SCROLL_BARS 14819 #ifdef USE_TOOLKIT_SCROLL_BARS
14821 #ifdef USE_MOTIF 14820 #ifdef USE_MOTIF
14822 Vx_toolkit_scroll_bars = intern ("motif"); 14821 Vx_toolkit_scroll_bars = intern ("motif");