diff options
| author | Andrew Innes | 2001-01-20 13:57:24 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-01-20 13:57:24 +0000 |
| commit | 1a89b7c6f7f1bc25bda88bbaefa9b8f8f207c7be (patch) | |
| tree | 4c749dbfdd48c0b4f24e0632e9ff0a80c5216bed /src/term.c | |
| parent | ff8d4bf4a6a9b946da5c6a12fc38b3b139de3baf (diff) | |
| download | emacs-1a89b7c6f7f1bc25bda88bbaefa9b8f8f207c7be.tar.gz emacs-1a89b7c6f7f1bc25bda88bbaefa9b8f8f207c7be.zip | |
(FRAME_TERMCAP_P) [WINDOWSNT]: Reinstate original
redefinition.
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c index 3919f7e59e1..185b706a17b 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -423,6 +423,17 @@ char *tparam (); | |||
| 423 | extern char *tgetstr (); | 423 | extern char *tgetstr (); |
| 424 | 424 | ||
| 425 | 425 | ||
| 426 | #ifdef WINDOWSNT | ||
| 427 | /* We aren't X windows, but we aren't termcap either. This makes me | ||
| 428 | uncertain as to what value to use for frame.output_method. For | ||
| 429 | this file, we'll define FRAME_TERMCAP_P to be zero so that our | ||
| 430 | output hooks get called instead of the termcap functions. Probably | ||
| 431 | the best long-term solution is to define an output_windows_nt... */ | ||
| 432 | |||
| 433 | #undef FRAME_TERMCAP_P | ||
| 434 | #define FRAME_TERMCAP_P(_f_) 0 | ||
| 435 | #endif /* WINDOWSNT */ | ||
| 436 | |||
| 426 | void | 437 | void |
| 427 | ring_bell () | 438 | ring_bell () |
| 428 | { | 439 | { |