From: Richard M. Stallman Date: Mon, 10 Jun 1996 21:09:04 +0000 (+0000) Subject: (Fmake_terminal_frame): Test MSDOS, not __MSDOS__. X-Git-Tag: emacs-19.34~470 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=541580aaf25d301de9d4bdd7c094c81550f245fc;p=emacs.git (Fmake_terminal_frame): Test MSDOS, not __MSDOS__. --- diff --git a/src/frame.c b/src/frame.c index bfa8046a0ea..7d4c3422a6d 100644 --- a/src/frame.c +++ b/src/frame.c @@ -525,7 +525,7 @@ Note that changing the size of one terminal frame automatically affects all.") struct frame *f; Lisp_Object frame; -#ifdef __MSDOS__ +#ifdef MSDOS if (selected_frame->output_method != output_msdos_raw) abort (); #else