aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-06-02 22:50:48 -0700
committerGlenn Morris2010-06-02 22:50:48 -0700
commite23dc1e2f07b476bc27d77037331b00a517eb5e3 (patch)
treed0278d4220ea9bef1283a30a7a2c8d8c58954720
parentb282c2e75e98348d02606f06ad5d67681f1b06f4 (diff)
downloademacs-e23dc1e2f07b476bc27d77037331b00a517eb5e3.tar.gz
emacs-e23dc1e2f07b476bc27d77037331b00a517eb5e3.zip
Remove NO_SOCK_SIGIO references.
* src/m/template.h (NO_SOCK_SIGIO): Remove, no longer used. * nextstep/DEV-NOTES: Remove out-of-date information.
-rw-r--r--nextstep/DEV-NOTES9
-rw-r--r--src/ChangeLog2
-rw-r--r--src/m/template.h11
3 files changed, 4 insertions, 18 deletions
diff --git a/nextstep/DEV-NOTES b/nextstep/DEV-NOTES
index bf3ad7908b5..462101f9abf 100644
--- a/nextstep/DEV-NOTES
+++ b/nextstep/DEV-NOTES
@@ -64,13 +64,8 @@ functions are:
64 64
65Currently ctrl-g is not detected in as many circumstances as other emacsen. 65Currently ctrl-g is not detected in as many circumstances as other emacsen.
66It is not certain whether this is due to the means of event loop integration, 66It is not certain whether this is due to the means of event loop integration,
67or errors of omission in the NS code. One area for exploration is the 67or errors of omission in the NS code. This is an area for improvement.
68NO_SOCK_SIGIO define. When it is defined, ctrl-g seems to be picked up more 68Also, see the article here and its containing thread:
69often, but there are some annoying side effects. Currently it is left off by
70default, unless the --enable-cocoa-experimental-ctrl-g option is passed to
71configure [option removed Feb 2009]. (Has no effect under GNUstep.)
72This is an area for improvement. Also, see the article here and its
73containing thread:
74 69
75http://article.gmane.org/gmane.emacs.devel/92021/match=handling%5fsignal 70http://article.gmane.org/gmane.emacs.devel/92021/match=handling%5fsignal
76 71
diff --git a/src/ChangeLog b/src/ChangeLog
index 3f66710b2bb..864d873e30e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12010-06-03 Glenn Morris <rgm@gnu.org> 12010-06-03 Glenn Morris <rgm@gnu.org>
2 2
3 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
4
3 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it, 5 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
4 now that AH_BOTTOM does it. 6 now that AH_BOTTOM does it.
5 7
diff --git a/src/m/template.h b/src/m/template.h
index 2807cd913ec..3beac1a7808 100644
--- a/src/m/template.h
+++ b/src/m/template.h
@@ -58,17 +58,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
58 code will not be sharable; but that's better than failing completely. */ 58 code will not be sharable; but that's better than failing completely. */
59#define NO_REMAP 59#define NO_REMAP
60 60
61/* Some really obscure 4.2-based systems (like Sequent DYNIX)
62 do not support asynchronous I/O (using SIGIO) on sockets,
63 even though it works fine on tty's. If you have one of
64 these systems, define the following, and then use it in
65 config.h (or elsewhere) to decide when (not) to use SIGIO.
66
67 You'd think this would go in an operating-system description file,
68 but since it only occurs on some, but not all, BSD systems, the
69 reasonable place to select for it is in the machine description file. */
70#define NO_SOCK_SIGIO
71
72/* After adding support for a new machine, modify the large case 61/* After adding support for a new machine, modify the large case
73 statement in configure.in to recognize reasonable 62 statement in configure.in to recognize reasonable
74 configuration names, and add a description of the system to 63 configuration names, and add a description of the system to