diff options
| author | Andrew Innes | 2001-01-20 13:56:49 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-01-20 13:56:49 +0000 |
| commit | ff8d4bf4a6a9b946da5c6a12fc38b3b139de3baf (patch) | |
| tree | 7439968d177427d04c80235663ca1bf886ca3c65 /src | |
| parent | 57fa06b7988ab94f62215cac476efa5ba60e39b1 (diff) | |
| download | emacs-ff8d4bf4a6a9b946da5c6a12fc38b3b139de3baf.tar.gz emacs-ff8d4bf4a6a9b946da5c6a12fc38b3b139de3baf.zip | |
(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')
| -rw-r--r-- | src/frame.c | 8 |
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; | |||
| 62 | Lisp_Object Qwidth; | 62 | Lisp_Object Qwidth; |
| 63 | Lisp_Object Qx; | 63 | Lisp_Object Qx; |
| 64 | Lisp_Object Qw32; | 64 | Lisp_Object Qw32; |
| 65 | Lisp_Object Qw32_console; | ||
| 66 | Lisp_Object Qpc; | 65 | Lisp_Object Qpc; |
| 67 | Lisp_Object Qmac; | 66 | Lisp_Object Qmac; |
| 68 | Lisp_Object Qvisible; | 67 | Lisp_Object Qvisible; |
| @@ -167,8 +166,6 @@ See also `frame-live-p'.") | |||
| 167 | return Qx; | 166 | return Qx; |
| 168 | case output_w32: | 167 | case output_w32: |
| 169 | return Qw32; | 168 | return Qw32; |
| 170 | case output_w32_console: | ||
| 171 | return Qw32_console; | ||
| 172 | case output_msdos_raw: | 169 | case output_msdos_raw: |
| 173 | return Qpc; | 170 | return Qpc; |
| 174 | case output_mac: | 171 | case output_mac: |
| @@ -487,7 +484,7 @@ make_terminal_frame () | |||
| 487 | f->output_method = output_termcap; | 484 | f->output_method = output_termcap; |
| 488 | #else | 485 | #else |
| 489 | #ifdef WINDOWSNT | 486 | #ifdef WINDOWSNT |
| 490 | f->output_method = output_w32_console; | 487 | f->output_method = output_termcap; |
| 491 | f->output_data.x = &tty_display; | 488 | f->output_data.x = &tty_display; |
| 492 | #else | 489 | #else |
| 493 | #ifdef macintosh | 490 | #ifdef macintosh |
| @@ -2002,7 +1999,6 @@ If FRAME is omitted, return information on the currently selected frame.") | |||
| 2002 | build_string (FRAME_MSDOS_P (f) | 1999 | build_string (FRAME_MSDOS_P (f) |
| 2003 | ? "ms-dos" | 2000 | ? "ms-dos" |
| 2004 | : FRAME_W32_P (f) ? "w32term" | 2001 | : FRAME_W32_P (f) ? "w32term" |
| 2005 | : FRAME_W32_CONSOLE_P (f) ? "w32console" | ||
| 2006 | :"tty")); | 2002 | :"tty")); |
| 2007 | } | 2003 | } |
| 2008 | store_in_alist (&alist, Qname, f->name); | 2004 | store_in_alist (&alist, Qname, f->name); |
| @@ -2427,8 +2423,6 @@ syms_of_frame () | |||
| 2427 | staticpro (&Qx); | 2423 | staticpro (&Qx); |
| 2428 | Qw32 = intern ("w32"); | 2424 | Qw32 = intern ("w32"); |
| 2429 | staticpro (&Qw32); | 2425 | staticpro (&Qw32); |
| 2430 | Qw32_console = intern ("w32-console"); | ||
| 2431 | staticpro (&Qw32_console); | ||
| 2432 | Qpc = intern ("pc"); | 2426 | Qpc = intern ("pc"); |
| 2433 | staticpro (&Qpc); | 2427 | staticpro (&Qpc); |
| 2434 | Qmac = intern ("mac"); | 2428 | Qmac = intern ("mac"); |