From: Richard M. Stallman Date: Tue, 1 Nov 1994 06:17:07 +0000 (+0000) Subject: (struct buffer): Test DOS_MT, not MSDOS. X-Git-Tag: emacs-19.34~6071 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5e028eee2a750bbdd8d96ff26fc5fc16b8767177;p=emacs.git (struct buffer): Test DOS_MT, not MSDOS. --- diff --git a/src/buffer.h b/src/buffer.h index d456e1bd68e..2889d263820 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -272,10 +272,10 @@ struct buffer Lisp_Object left_margin; /* Function to call when insert space past fill column */ Lisp_Object auto_fill_function; -#ifdef MSDOS +#ifdef DOS_NT /* nil: text, t: binary. */ Lisp_Object buffer_file_type; -#endif +#endif /* DOS_NT */ /* String of length 256 mapping each char to its lower-case version. */ Lisp_Object downcase_table;