diff options
| author | Miles Bader | 2001-10-17 03:16:12 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-10-17 03:16:12 +0000 |
| commit | 7ee72033eb52c5891e39c80b6db21e491ce0b187 (patch) | |
| tree | 5d7f0e7a7efbf8ada6531247701ba53d6c70579d /src/xterm.c | |
| parent | 015a8883e056cd23d926a45304b63880b7a99063 (diff) | |
| download | emacs-7ee72033eb52c5891e39c80b6db21e491ce0b187.tar.gz emacs-7ee72033eb52c5891e39c80b6db21e491ce0b187.zip | |
Change doc-string comments to `new style' [w/`doc:' keyword].
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/xterm.c b/src/xterm.c index 492966253de..7215650534c 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -32,7 +32,6 @@ 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 | ||
| 36 | #include "lisp.h" | 35 | #include "lisp.h" |
| 37 | #include "blockinput.h" | 36 | #include "blockinput.h" |
| 38 | 37 | ||
| @@ -14799,22 +14798,22 @@ syms_of_xterm () | |||
| 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 |