aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/CPP-DEFINES3
-rw-r--r--src/ChangeLog5
-rw-r--r--src/keyboard.c4
3 files changed, 5 insertions, 7 deletions
diff --git a/admin/CPP-DEFINES b/admin/CPP-DEFINES
index 3c69e9e6a4a..7ab0c3f52a4 100644
--- a/admin/CPP-DEFINES
+++ b/admin/CPP-DEFINES
@@ -75,9 +75,6 @@ NO_REMAP
75VIRT_ADDR_VARIES 75VIRT_ADDR_VARIES
76WORDS_BIG_ENDIAN 76WORDS_BIG_ENDIAN
77 77
78** Not used anymore by any port, can be cleaned up
79NO_SOCK_SIGIO
80
81** Misc macros 78** Misc macros
82USER_FULL_NAME If defined, overrides the default pw->pw_gecos for getting at the full user name. Only MSDOS overrides the default. 79USER_FULL_NAME If defined, overrides the default pw->pw_gecos for getting at the full user name. Only MSDOS overrides the default.
83 80
diff --git a/src/ChangeLog b/src/ChangeLog
index c65767d8fc4..ab47c2cab02 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
4 NO_SOCK_SIGIO, not used anymore.
5
12010-03-21 Dan Nicolaescu <dann@ics.uci.edu> 62010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
2 7
3 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only 8 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
diff --git a/src/keyboard.c b/src/keyboard.c
index 48d39235e3f..6582af7f805 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11304,11 +11304,7 @@ See also `current-input-mode'. */)
11304 { 11304 {
11305 /* When using X, don't give the user a real choice, 11305 /* When using X, don't give the user a real choice,
11306 because we haven't implemented the mechanisms to support it. */ 11306 because we haven't implemented the mechanisms to support it. */
11307#ifdef NO_SOCK_SIGIO
11308 new_interrupt_input = 0;
11309#else /* not NO_SOCK_SIGIO */
11310 new_interrupt_input = 1; 11307 new_interrupt_input = 1;
11311#endif /* NO_SOCK_SIGIO */
11312 } 11308 }
11313 else 11309 else
11314#endif /* HAVE_X_WINDOWS */ 11310#endif /* HAVE_X_WINDOWS */