comparison src/s/msdos.h @ 9572:b36d5e88cccc

*** empty log message ***
author Morten Welinder <terra@diku.dk>
date Mon, 17 Oct 1994 08:42:36 +0000
parents 191acacfa1ec
children 3a3fb4db54ba
comparison
equal deleted inserted replaced
9571:b37425ecb3f0 9572:b36d5e88cccc
167 /* This somehow needs to be defined even though we use COFF. */ 167 /* This somehow needs to be defined even though we use COFF. */
168 #define TEXT_START -1 168 #define TEXT_START -1
169 169
170 #define ORDINARY_LINK 170 #define ORDINARY_LINK
171 171
172 /* command.com does not under stand `...` so we define this. */ 172 /* command.com does not understand `...` so we define this. */
173 #define LIB_GCC -Lgcc 173 #define LIB_GCC -Lgcc
174 #define DONT_NEED_ENVIRON 174 #define DONT_NEED_ENVIRON
175 #define SEPCHAR ';' 175 #define SEPCHAR ';'
176 176
177 #define NULL_DEVICE "nul" 177 #define NULL_DEVICE "nul"
213 #define BCOPY_DOWNWARD_SAFE 1 213 #define BCOPY_DOWNWARD_SAFE 1
214 214
215 /* Mode line description of a buffer's type. */ 215 /* Mode line description of a buffer's type. */
216 #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B") 216 #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B")
217 217
218 /* We need a little extra space, see ../../lisp/loadup.el */
219 #define PURESIZE 240000
220
221 /* We have (the code to control) a mouse. */ 218 /* We have (the code to control) a mouse. */
222 #define HAVE_MOUSE 219 #define HAVE_MOUSE
220
221 /* We have support for faces. */
222 #define HAVE_FACES
223
224 /* Define one of these for easier conditionals. */
225 #ifdef HAVE_X_WINDOWS
226 /* We need a little extra space, see ../../lisp/loadup.el */
227 #define SYSTEM_PURESIZE_EXTRA 15000
228 #define HAVE_X11R5
229 #define LIBX11_SYSTEM -lxext -lsys
230 #else
231 /* We need a little extra space, see ../../lisp/loadup.el */
232 #define SYSTEM_PURESIZE_EXTRA 30000
233 #endif