aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2007-09-25 08:54:10 +0000
committerJason Rumney2007-09-25 08:54:10 +0000
commitec8705b63967156f159918b2b8908211764e3383 (patch)
treea262c4e1a64b1d859ee88797cdd95e7d812b071f /src
parentda6c83b1f5127a4c62b08de447f4a8ebe638e17e (diff)
downloademacs-ec8705b63967156f159918b2b8908211764e3383.tar.gz
emacs-ec8705b63967156f159918b2b8908211764e3383.zip
(make_terminal_frame): Remove special case for WINDOWSNT.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog11
-rw-r--r--src/frame.c7
2 files changed, 11 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6500d152f69..d01a5029438 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12007-09-25 Jason Rumney <jasonr@gnu.org>
2
3 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
4
5 * w32console.c (create_w32cons_output): Remove.
6
7 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
8
9 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
10 (reset_sys_modes): Use reset_terminal_modes_hook.
11
12007-09-24 Stefan Monnier <monnier@iro.umontreal.ca> 122007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
2 13
3 * eval.c (do_autoload): Don't output any message. 14 * eval.c (do_autoload): Don't output any message.
diff --git a/src/frame.c b/src/frame.c
index 6596111d0ca..aa7f4ad8d76 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -601,12 +601,6 @@ make_terminal_frame (struct terminal *terminal)
601 else 601 else
602 f->output_method = output_termcap; 602 f->output_method = output_termcap;
603#else 603#else
604#ifdef WINDOWSNT
605 f->output_method = output_termcap;
606 f->terminal = terminal;
607 f->terminal->reference_count++;
608 create_w32cons_output (f);
609#else
610#ifdef MAC_OS8 604#ifdef MAC_OS8
611 make_mac_terminal_frame (f); 605 make_mac_terminal_frame (f);
612#else 606#else
@@ -635,7 +629,6 @@ make_terminal_frame (struct terminal *terminal)
635 FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR; 629 FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR;
636#endif 630#endif
637#endif /* MAC_OS8 */ 631#endif /* MAC_OS8 */
638#endif /* WINDOWSNT */
639#endif /* MSDOS */ 632#endif /* MSDOS */
640 633
641 if (!noninteractive) 634 if (!noninteractive)