# HG changeset patch # User Andrew Innes # Date 979999009 0 # Node ID c6cb860208d824fe779bdd613e1847381d2f87f3 # Parent 6bbd23bff222e1a3fd04fa462785ec45c70003b1 (Qw32_console): Remove variable. (Fframep): Remove references to it. (syms_of_frame): Ditto. (Fframe_parameters): Remove references to FRAME_W32_CONSOLE_P. diff -r 6bbd23bff222 -r c6cb860208d8 src/frame.c --- a/src/frame.c Sat Jan 20 13:56:17 2001 +0000 +++ b/src/frame.c Sat Jan 20 13:56:49 2001 +0000 @@ -62,7 +62,6 @@ Lisp_Object Qwidth; Lisp_Object Qx; Lisp_Object Qw32; -Lisp_Object Qw32_console; Lisp_Object Qpc; Lisp_Object Qmac; Lisp_Object Qvisible; @@ -167,8 +166,6 @@ return Qx; case output_w32: return Qw32; - case output_w32_console: - return Qw32_console; case output_msdos_raw: return Qpc; case output_mac: @@ -487,7 +484,7 @@ f->output_method = output_termcap; #else #ifdef WINDOWSNT - f->output_method = output_w32_console; + f->output_method = output_termcap; f->output_data.x = &tty_display; #else #ifdef macintosh @@ -2002,7 +1999,6 @@ build_string (FRAME_MSDOS_P (f) ? "ms-dos" : FRAME_W32_P (f) ? "w32term" - : FRAME_W32_CONSOLE_P (f) ? "w32console" :"tty")); } store_in_alist (&alist, Qname, f->name); @@ -2427,8 +2423,6 @@ staticpro (&Qx); Qw32 = intern ("w32"); staticpro (&Qw32); - Qw32_console = intern ("w32-console"); - staticpro (&Qw32_console); Qpc = intern ("pc"); staticpro (&Qpc); Qmac = intern ("mac");