summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>2001-01-20 13:56:49 +0000
committerAndrew Innes <andrewi@gnu.org>2001-01-20 13:56:49 +0000
commitff8d4bf4a6a9b946da5c6a12fc38b3b139de3baf (patch)
tree7439968d177427d04c80235663ca1bf886ca3c65 /src/frame.c
parent57fa06b7988ab94f62215cac476efa5ba60e39b1 (diff)
downloademacs-ff8d4bf4a6a9b946da5c6a12fc38b3b139de3baf.tar.gz
(Qw32_console): Remove variable.
(Fframep): Remove references to it. (syms_of_frame): Ditto. (Fframe_parameters): Remove references to FRAME_W32_CONSOLE_P.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/frame.c b/src/frame.c
index ad71eb76f38..fae6f8c7b3d 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -62,7 +62,6 @@ Lisp_Object Qtool_bar_lines;
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 @@ See also `frame-live-p'.")
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 @@ make_terminal_frame ()
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 @@ If FRAME is omitted, return information on the currently selected frame.")
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 @@ syms_of_frame ()
staticpro (&Qx);
Qw32 = intern ("w32");
staticpro (&Qw32);
- Qw32_console = intern ("w32-console");
- staticpro (&Qw32_console);
Qpc = intern ("pc");
staticpro (&Qpc);
Qmac = intern ("mac");