summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-10-14 10:36:32 +0000
committerGerd Moellmann <gerd@gnu.org>2001-10-14 10:36:32 +0000
commit228299fa7111d1f2da3c2fa741bb27d7dc9c66af (patch)
tree562b09ff191ebd71d426b5b2e33df3f7dcac4977 /src/term.c
parent37f6b5b6d246d36afcd658c8bdde1791eb790f63 (diff)
downloademacs-228299fa7111d1f2da3c2fa741bb27d7dc9c66af.tar.gz
Put doc strings in comments.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/term.c b/src/term.c
index 9f281db0182..1ef1f2da929 100644
--- a/src/term.c
+++ b/src/term.c
@@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */
#include <string.h>
#include "termchar.h"
#include "termopts.h"
+#define DOC_STRINGS_IN_COMMENTS
#include "lisp.h"
#include "charset.h"
#include "coding.h"
@@ -2175,8 +2176,8 @@ turn_off_face (f, face_id)
DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
0, 1, 0,
- "Return non-nil if TTY can display colors on FRAME.")
- (frame)
+ /* Return non-nil if TTY can display colors on FRAME. */
+ (frame))
Lisp_Object frame;
{
return TN_max_colors > 0 ? Qt : Qnil;
@@ -2607,18 +2608,18 @@ fatal (str, arg1, arg2)
void
syms_of_term ()
{
- DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo,
- "Non-nil means the system uses terminfo rather than termcap.\n\
-This variable can be used by terminal emulator packages.");
+ DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo
+ /* Non-nil means the system uses terminfo rather than termcap.
+This variable can be used by terminal emulator packages. */);
#ifdef TERMINFO
system_uses_terminfo = 1;
#else
system_uses_terminfo = 0;
#endif
- DEFVAR_LISP ("ring-bell-function", &Vring_bell_function,
- "Non-nil means call this function to ring the bell.\n\
-The function should accept no arguments.");
+ DEFVAR_LISP ("ring-bell-function", &Vring_bell_function
+ /* Non-nil means call this function to ring the bell.
+The function should accept no arguments. */);
Vring_bell_function = Qnil;
defsubr (&Stty_display_color_p);