Mercurial > emacs
changeset 25158:79960f23f1fb
(make_terminal_frame): Don't call init_frame_faces if
noninteractive, for termcap frames as well.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 02 Aug 1999 12:41:09 +0000 |
parents | 1978f057423d |
children | 8e7cbb952142 |
files | src/frame.c |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.c Mon Aug 02 12:37:31 1999 +0000 +++ b/src/frame.c Mon Aug 02 12:41:09 1999 +0000 @@ -539,12 +539,11 @@ #ifdef MSDOS f->output_data.x = &the_only_x_display; f->output_method = output_msdos_raw; +#else /* not MSDOS */ + f->output_data.nothing = 1; /* Nonzero means frame isn't deleted. */ +#endif if (!noninteractive) init_frame_faces (f); -#else /* not MSDOS */ - f->output_data.nothing = 1; /* Nonzero means frame isn't deleted. */ - init_frame_faces (f); -#endif return f; }