comparison src/s/msdos.h @ 96721:a2d3c8acc0fe

* m/ibms390.h: * m/intel386.h: * m/m68k.h: * s/bsd-common.h: * s/cygwin.h: * s/darwin.h: * s/freebsd.h: * s/gnu.h: * s/msdos.h: Remove boilerplate comments.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 16 Jul 2008 07:26:30 +0000
parents 79121a8f01e3
children d89afa2b4c2f
comparison
equal deleted inserted replaced
96720:f4aea6a6eccb 96721:a2d3c8acc0fe
52 /* NOMULTIPLEJOBS should be defined if your system's shell 52 /* NOMULTIPLEJOBS should be defined if your system's shell
53 does not have "job control" (the ability to stop a program, 53 does not have "job control" (the ability to stop a program,
54 run some other program, then continue the first one). */ 54 run some other program, then continue the first one). */
55 55
56 #define NOMULTIPLEJOBS 56 #define NOMULTIPLEJOBS
57
58 /* Emacs can read input using SIGIO and buffering characters itself,
59 or using CBREAK mode and making C-g cause SIGINT.
60 The choice is controlled by the variable interrupt_input.
61 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
62
63 SIGIO can be used only on systems that implement it (4.2 and 4.3).
64 CBREAK mode has two disadvantages
65 1) At least in 4.2, it is impossible to handle the Meta key properly.
66 I hear that in system V this problem does not exist.
67 2) Control-G causes output to be discarded.
68 I do not know whether this can be fixed in system V.
69
70 Another method of doing input is planned but not implemented.
71 It would have Emacs fork off a separate process
72 to read the input and send it to the true Emacs process
73 through a pipe.
74 */
75
76 /* #define INTERRUPT_INPUT */
77
78 /* Letter to use in finding device name of first pty,
79 if system supports pty's. 'a' means it is /dev/ptya0 */
80
81 /* #define FIRST_PTY_LETTER 'a' */
82
83 /*
84 * Define HAVE_PTYS if the system supports pty devices.
85 */
86
87 /* #define HAVE_PTYS */
88
89 /*
90 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate
91 * The 4.2 opendir, etc., library functions.
92 */
93
94 /* #define NONSYSTEM_DIR_LIBRARY */
95 57
96 #define SYSV_SYSTEM_DIR 58 #define SYSV_SYSTEM_DIR
97 59
98 /* Define this symbol if your system has the functions bcopy, etc. */ 60 /* Define this symbol if your system has the functions bcopy, etc. */
99 61
113 75
114 /* If your system uses COFF (Common Object File Format) then define the 76 /* If your system uses COFF (Common Object File Format) then define the
115 preprocessor symbol "COFF". */ 77 preprocessor symbol "COFF". */
116 78
117 #define COFF 79 #define COFF
118
119 /* define MAIL_USE_FLOCK if the mailer uses flock
120 to interlock access to /usr/spool/mail/$USER.
121 The alternative is that a lock file named
122 /usr/spool/mail/$USER.lock. */
123
124 /* #define MAIL_USE_FLOCK */
125
126 /* Define CLASH_DETECTION if you want lock files to be written
127 so that Emacs can tell instantly when you try to modify
128 a file that someone else has modified in his Emacs. */
129
130 /* #define CLASH_DETECTION */
131 80
132 /* Here, on a separate page, add any special hacks needed 81 /* Here, on a separate page, add any special hacks needed
133 to make Emacs work on this system. For example, 82 to make Emacs work on this system. For example,
134 you might define certain system call names that don't 83 you might define certain system call names that don't
135 exist on your system, or that do different things on 84 exist on your system, or that do different things on