diff options
| author | Gerd Moellmann | 2001-10-14 10:36:32 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-14 10:36:32 +0000 |
| commit | 228299fa7111d1f2da3c2fa741bb27d7dc9c66af (patch) | |
| tree | 562b09ff191ebd71d426b5b2e33df3f7dcac4977 /src/xterm.c | |
| parent | 37f6b5b6d246d36afcd658c8bdde1791eb790f63 (diff) | |
| download | emacs-228299fa7111d1f2da3c2fa741bb27d7dc9c66af.tar.gz emacs-228299fa7111d1f2da3c2fa741bb27d7dc9c66af.zip | |
Put doc strings in comments.
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/src/xterm.c b/src/xterm.c index caf9695cf11..2dd0cd01b89 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 32 | 32 | ||
| 33 | #ifdef HAVE_X_WINDOWS | 33 | #ifdef HAVE_X_WINDOWS |
| 34 | 34 | ||
| 35 | #define DOC_STRINGS_IN_COMMENTS | ||
| 35 | #include "lisp.h" | 36 | #include "lisp.h" |
| 36 | #include "blockinput.h" | 37 | #include "blockinput.h" |
| 37 | 38 | ||
| @@ -14790,24 +14791,24 @@ syms_of_xterm () | |||
| 14790 | staticpro (&previous_help_echo); | 14791 | staticpro (&previous_help_echo); |
| 14791 | help_echo_pos = -1; | 14792 | help_echo_pos = -1; |
| 14792 | 14793 | ||
| 14793 | DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p, | 14794 | DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p |
| 14794 | "*Non-nil means draw block cursor as wide as the glyph under it.\n\ | 14795 | /* *Non-nil means draw block cursor as wide as the glyph under it. |
| 14795 | For example, if a block cursor is over a tab, it will be drawn as\n\ | 14796 | For example, if a block cursor is over a tab, it will be drawn as |
| 14796 | wide as that tab on the display."); | 14797 | wide as that tab on the display. */); |
| 14797 | x_stretch_cursor_p = 0; | 14798 | x_stretch_cursor_p = 0; |
| 14798 | 14799 | ||
| 14799 | DEFVAR_BOOL ("x-use-underline-position-properties", | 14800 | DEFVAR_BOOL ("x-use-underline-position-properties", |
| 14800 | &x_use_underline_position_properties, | 14801 | &x_use_underline_position_properties |
| 14801 | "*Non-nil means make use of UNDERLINE_POSITION font properties.\n\ | 14802 | /* *Non-nil means make use of UNDERLINE_POSITION font properties. |
| 14802 | Nil means ignore them. If you encounter fonts with bogus\n\ | 14803 | Nil means ignore them. If you encounter fonts with bogus |
| 14803 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior\n\ | 14804 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior |
| 14804 | to 4.1, set this to nil."); | 14805 | to 4.1, set this to nil. */); |
| 14805 | x_use_underline_position_properties = 1; | 14806 | x_use_underline_position_properties = 1; |
| 14806 | 14807 | ||
| 14807 | DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars, | 14808 | DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars |
| 14808 | "What X toolkit scroll bars Emacs uses.\n\ | 14809 | /* What X toolkit scroll bars Emacs uses. |
| 14809 | A value of nil means Emacs doesn't use X toolkit scroll bars.\n\ | 14810 | A value of nil means Emacs doesn't use X toolkit scroll bars. |
| 14810 | Otherwise, value is a symbol describing the X toolkit."); | 14811 | Otherwise, value is a symbol describing the X toolkit. */); |
| 14811 | #ifdef USE_TOOLKIT_SCROLL_BARS | 14812 | #ifdef USE_TOOLKIT_SCROLL_BARS |
| 14812 | #ifdef USE_MOTIF | 14813 | #ifdef USE_MOTIF |
| 14813 | Vx_toolkit_scroll_bars = intern ("motif"); | 14814 | Vx_toolkit_scroll_bars = intern ("motif"); |