aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2010-04-20 22:47:56 -0700
committerDan Nicolaescu2010-04-20 22:47:56 -0700
commit3ec759e79e1043978baa24743510e352387be20d (patch)
treed5db20d8090adf5240638bc666d5b737777c699b /src
parent4285ac5ac002f0a705baca4b4903668b271ee3d5 (diff)
downloademacs-3ec759e79e1043978baa24743510e352387be20d.tar.gz
emacs-3ec759e79e1043978baa24743510e352387be20d.zip
Remove NOMULTIPLEJOBS, unused.
* s/template.h (NOMULTIPLEJOBS): * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/s/msdos.h6
-rw-r--r--src/s/template.h6
3 files changed, 4 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f1c51c7255a..b88211f82dd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12010-04-21 Dan Nicolaescu <local_user@dannlt> 12010-04-21 Dan Nicolaescu <local_user@dannlt>
2 2
3 Remove NOMULTIPLEJOBS, unused.
4 * s/template.h (NOMULTIPLEJOBS):
5 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
6
3 Simplify LD_SWITCH_SYSTEM_TEMACS usage. 7 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
4 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS): 8 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
5 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure 9 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
diff --git a/src/s/msdos.h b/src/s/msdos.h
index 115ec05b0a4..bcef83ba03e 100644
--- a/src/s/msdos.h
+++ b/src/s/msdos.h
@@ -44,12 +44,6 @@ You lose; /* Emacs for DOS must be compiled with DJGPP */
44 44
45#define SYMS_SYSTEM syms_of_dosfns();syms_of_msdos();syms_of_win16select() 45#define SYMS_SYSTEM syms_of_dosfns();syms_of_msdos();syms_of_win16select()
46 46
47/* NOMULTIPLEJOBS should be defined if your system's shell
48 does not have "job control" (the ability to stop a program,
49 run some other program, then continue the first one). */
50
51#define NOMULTIPLEJOBS
52
53#define SYSV_SYSTEM_DIR 47#define SYSV_SYSTEM_DIR
54 48
55/* Define this symbol if your system has the functions bcopy, etc. */ 49/* Define this symbol if your system has the functions bcopy, etc. */
diff --git a/src/s/template.h b/src/s/template.h
index e5fd2541c7b..a20aa266555 100644
--- a/src/s/template.h
+++ b/src/s/template.h
@@ -37,12 +37,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
37 37
38#define SYSTEM_TYPE "berkeley-unix" 38#define SYSTEM_TYPE "berkeley-unix"
39 39
40/* NOMULTIPLEJOBS should be defined if your system's shell
41 does not have "job control" (the ability to stop a program,
42 run some other program, then continue the first one). */
43
44/* #define NOMULTIPLEJOBS */
45
46/* Emacs can read input using SIGIO and buffering characters itself, 40/* Emacs can read input using SIGIO and buffering characters itself,
47 or using CBREAK mode and making C-g cause SIGINT. 41 or using CBREAK mode and making C-g cause SIGINT.
48 The choice is controlled by the variable interrupt_input. 42 The choice is controlled by the variable interrupt_input.