Mercurial > emacs
diff src/term.c @ 35448:dc70b7c5709b
(FRAME_TERMCAP_P) [WINDOWSNT]: Reinstate original
redefinition.
| author | Andrew Innes <andrewi@gnu.org> |
|---|---|
| date | Sat, 20 Jan 2001 13:57:24 +0000 |
| parents | bc80b0ab1630 |
| children | 6a7ab4d2c7b3 |
line wrap: on
line diff
--- a/src/term.c Sat Jan 20 13:56:49 2001 +0000 +++ b/src/term.c Sat Jan 20 13:57:24 2001 +0000 @@ -423,6 +423,17 @@ extern char *tgetstr (); +#ifdef WINDOWSNT +/* We aren't X windows, but we aren't termcap either. This makes me + uncertain as to what value to use for frame.output_method. For + this file, we'll define FRAME_TERMCAP_P to be zero so that our + output hooks get called instead of the termcap functions. Probably + the best long-term solution is to define an output_windows_nt... */ + +#undef FRAME_TERMCAP_P +#define FRAME_TERMCAP_P(_f_) 0 +#endif /* WINDOWSNT */ + void ring_bell () {
