aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2007-10-23 21:18:26 +0000
committerStefan Monnier2007-10-23 21:18:26 +0000
commit98228e72cabfc932e78ad01f1e28cce19ddf8df2 (patch)
treec79d0e43e13795e53d4c43a2fa37f94ced82f1f2 /src
parent1baf6db97df77cb91cd3f5007f994d9768e0041d (diff)
downloademacs-98228e72cabfc932e78ad01f1e28cce19ddf8df2.tar.gz
emacs-98228e72cabfc932e78ad01f1e28cce19ddf8df2.zip
(unwind_request_sigio): Only define if __ultrix__.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/process.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9c5e1eefa77..84a54a973ff 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12007-10-23 Stefan Monnier <monnier@iro.umontreal.ca> 12007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * process.c (unwind_request_sigio): Only define if __ultrix__.
4
3 * callproc.c (child_setup): Remove spurious *. 5 * callproc.c (child_setup): Remove spurious *.
4 6
5 * lisp.h (Fget_text_property): Declare. 7 * lisp.h (Fget_text_property): Declare.
diff --git a/src/process.c b/src/process.c
index bbf754b971d..eca9c47e582 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2683,6 +2683,7 @@ OPTION is not a supported option, return nil instead; otherwise return t. */)
2683 2683
2684/* A version of request_sigio suitable for a record_unwind_protect. */ 2684/* A version of request_sigio suitable for a record_unwind_protect. */
2685 2685
2686#ifdef __ultrix__
2686static Lisp_Object 2687static Lisp_Object
2687unwind_request_sigio (dummy) 2688unwind_request_sigio (dummy)
2688 Lisp_Object dummy; 2689 Lisp_Object dummy;
@@ -2691,6 +2692,7 @@ unwind_request_sigio (dummy)
2691 request_sigio (); 2692 request_sigio ();
2692 return Qnil; 2693 return Qnil;
2693} 2694}
2695#endif
2694 2696
2695/* Create a network stream/datagram client/server process. Treated 2697/* Create a network stream/datagram client/server process. Treated
2696 exactly like a normal process when reading and writing. Primary 2698 exactly like a normal process when reading and writing. Primary