From: Kim F. Storm Date: Mon, 26 Aug 2002 10:16:51 +0000 (+0000) Subject: (make_terminal_frame) [CANNOT_DUMP]: Initialize X-Git-Tag: emacs-pretest-21.2.91~105 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=20357168ed2f021118cafa125fa9e9185391d4c6;p=emacs.git (make_terminal_frame) [CANNOT_DUMP]: Initialize foreground and background colors. From Joe Buehler (tiny change). --- diff --git a/src/frame.c b/src/frame.c index 345ae868776..73a89526500 100644 --- a/src/frame.c +++ b/src/frame.c @@ -486,6 +486,10 @@ make_terminal_frame () make_mac_terminal_frame (f); #else f->output_data.x = &tty_display; +#ifdef CANNOT_DUMP + FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR; + FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR; +#endif #endif /* macintosh */ #endif /* WINDOWSNT */ #endif /* MSDOS */