]> git.eshelyaron.com Git - emacs.git/commitdiff
(FRAME_TERMCAP_P) [WINDOWSNT]: Reinstate original
authorAndrew Innes <andrewi@gnu.org>
Sat, 20 Jan 2001 13:57:24 +0000 (13:57 +0000)
committerAndrew Innes <andrewi@gnu.org>
Sat, 20 Jan 2001 13:57:24 +0000 (13:57 +0000)
redefinition.

src/term.c

index 3919f7e59e11a2bba7b523c0e4ff4276605aceaf..185b706a17b3c5d7dd5dd66c15ce7c9dee23b8e5 100644 (file)
@@ -423,6 +423,17 @@ char *tparam ();
 extern char *tgetstr ();
 \f
 
+#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 ()
 {