comparison src/frame.c @ 15392:ac7e878c5526

(Fmake_terminal_frame): Test MSDOS, not __MSDOS__.
author Richard M. Stallman <rms@gnu.org>
date Mon, 10 Jun 1996 21:09:04 +0000
parents d4cec5d7566d
children fbecc317220d
comparison
equal deleted inserted replaced
15391:d4cec5d7566d 15392:ac7e878c5526
523 Lisp_Object parms; 523 Lisp_Object parms;
524 { 524 {
525 struct frame *f; 525 struct frame *f;
526 Lisp_Object frame; 526 Lisp_Object frame;
527 527
528 #ifdef __MSDOS__ 528 #ifdef MSDOS
529 if (selected_frame->output_method != output_msdos_raw) 529 if (selected_frame->output_method != output_msdos_raw)
530 abort (); 530 abort ();
531 #else 531 #else
532 if (selected_frame->output_method != output_termcap) 532 if (selected_frame->output_method != output_termcap)
533 error ("Not using an ASCII terminal now; cannot make a new ASCII frame"); 533 error ("Not using an ASCII terminal now; cannot make a new ASCII frame");