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/term.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/term.c')
| -rw-r--r-- | src/term.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/term.c b/src/term.c index 1ef1f2da929..65d0c8cedac 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -25,9 +25,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 25 | #include <stdio.h> | 25 | #include <stdio.h> |
| 26 | #include <ctype.h> | 26 | #include <ctype.h> |
| 27 | #include <string.h> | 27 | #include <string.h> |
| 28 | |||
| 28 | #include "termchar.h" | 29 | #include "termchar.h" |
| 29 | #include "termopts.h" | 30 | #include "termopts.h" |
| 30 | #define DOC_STRINGS_IN_COMMENTS | ||
| 31 | #include "lisp.h" | 31 | #include "lisp.h" |
| 32 | #include "charset.h" | 32 | #include "charset.h" |
| 33 | #include "coding.h" | 33 | #include "coding.h" |
| @@ -2176,8 +2176,8 @@ turn_off_face (f, face_id) | |||
| 2176 | 2176 | ||
| 2177 | DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p, | 2177 | DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p, |
| 2178 | 0, 1, 0, | 2178 | 0, 1, 0, |
| 2179 | /* Return non-nil if TTY can display colors on FRAME. */ | 2179 | doc: /* Return non-nil if TTY can display colors on FRAME. */) |
| 2180 | (frame)) | 2180 | (frame) |
| 2181 | Lisp_Object frame; | 2181 | Lisp_Object frame; |
| 2182 | { | 2182 | { |
| 2183 | return TN_max_colors > 0 ? Qt : Qnil; | 2183 | return TN_max_colors > 0 ? Qt : Qnil; |
| @@ -2608,8 +2608,8 @@ fatal (str, arg1, arg2) | |||
| 2608 | void | 2608 | void |
| 2609 | syms_of_term () | 2609 | syms_of_term () |
| 2610 | { | 2610 | { |
| 2611 | DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo | 2611 | DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo, |
| 2612 | /* Non-nil means the system uses terminfo rather than termcap. | 2612 | doc: /* Non-nil means the system uses terminfo rather than termcap. |
| 2613 | This variable can be used by terminal emulator packages. */); | 2613 | This variable can be used by terminal emulator packages. */); |
| 2614 | #ifdef TERMINFO | 2614 | #ifdef TERMINFO |
| 2615 | system_uses_terminfo = 1; | 2615 | system_uses_terminfo = 1; |
| @@ -2617,8 +2617,8 @@ This variable can be used by terminal emulator packages. */); | |||
| 2617 | system_uses_terminfo = 0; | 2617 | system_uses_terminfo = 0; |
| 2618 | #endif | 2618 | #endif |
| 2619 | 2619 | ||
| 2620 | DEFVAR_LISP ("ring-bell-function", &Vring_bell_function | 2620 | DEFVAR_LISP ("ring-bell-function", &Vring_bell_function, |
| 2621 | /* Non-nil means call this function to ring the bell. | 2621 | doc: /* Non-nil means call this function to ring the bell. |
| 2622 | The function should accept no arguments. */); | 2622 | The function should accept no arguments. */); |
| 2623 | Vring_bell_function = Qnil; | 2623 | Vring_bell_function = Qnil; |
| 2624 | 2624 | ||