aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2002-03-21 12:23:22 +0000
committerKim F. Storm <[email protected]>2002-03-21 12:23:22 +0000
commit557ba8b2d6e5f4685c084180d1379cc9fc2980ce (patch)
tree0bcba17ac3282497c19d7af04b4e58991b40b05c /lisp/simple.el
parent778140350cd3c2c9235112058b153b5002b012fb (diff)
(open-network-stream-nowait): Use featurep.
(open-network-stream-server): Ditto.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index e63fde044b..57493bb06e 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4240,7 +4240,7 @@ Args are NAME BUFFER HOST SERVICE SENTINEL FILTER.
NAME, BUFFER, HOST, and SERVICE are as for `open-network-stream'.
Optional args, SENTINEL and FILTER specifies the sentinel and filter
functions to be used for this network stream."
- (if (make-network-process :feature :nowait t)
+ (if (featurep 'make-network-process '(:nowait t))
(make-network-process :name name :buffer buffer :nowait t
:host host :service service
:filter filter :sentinel sentinel)))
@@ -4267,7 +4267,7 @@ an unused port number for the server.
Optional args, SENTINEL and FILTER specifies the sentinel and filter
functions to be used for the client processes; the server process
does not use these function."
- (if (make-network-process :feature :server t)
+ (if (featurep 'make-network-process '(:server t))
(make-network-process :name name :buffer buffer
:service service :server t :noquery t)))