# HG changeset patch # User Miles Bader # Date 1022397742 0 # Node ID d60b0f2013861ea9697e278751d42496360e93f6 # Parent f62b4c7276d715c0ed39ee1ccaba9aaa90994136 (tty_capable_p): New function. (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM) (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros. diff -r f62b4c7276d7 -r d60b0f201386 src/dispextern.h --- a/src/dispextern.h Sun May 26 00:54:10 2002 +0000 +++ b/src/dispextern.h Sun May 26 07:22:22 2002 +0000 @@ -2201,7 +2201,19 @@ /*********************************************************************** - Function Prototypes + Terminal Capabilities + ***********************************************************************/ + +#define TTY_CAP_INVERSE 0x01 +#define TTY_CAP_UNDERLINE 0x02 +#define TTY_CAP_BOLD 0x04 +#define TTY_CAP_DIM 0x08 +#define TTY_CAP_BLINK 0x10 +#define TTY_CAP_ALT_CHARSET 0x20 + + +/*********************************************************************** + Function Prototypes ***********************************************************************/ /* Defined in xdisp.c */ @@ -2443,6 +2455,7 @@ extern void term_init P_ ((char *)); extern void fatal P_ ((/* char *, ... */)); void cursor_to P_ ((int, int)); +extern int tty_capable_p P_ ((struct frame *, unsigned, unsigned long, unsigned long)); /* Defined in scroll.c */