aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes2001-01-20 13:57:24 +0000
committerAndrew Innes2001-01-20 13:57:24 +0000
commit1a89b7c6f7f1bc25bda88bbaefa9b8f8f207c7be (patch)
tree4c749dbfdd48c0b4f24e0632e9ff0a80c5216bed /src
parentff8d4bf4a6a9b946da5c6a12fc38b3b139de3baf (diff)
downloademacs-1a89b7c6f7f1bc25bda88bbaefa9b8f8f207c7be.tar.gz
emacs-1a89b7c6f7f1bc25bda88bbaefa9b8f8f207c7be.zip
(FRAME_TERMCAP_P) [WINDOWSNT]: Reinstate original
redefinition.
Diffstat (limited to 'src')
-rw-r--r--src/term.c11
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 ();
423extern char *tgetstr (); 423extern 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
426void 437void
427ring_bell () 438ring_bell ()
428{ 439{