aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-05-28 22:04:14 +0000
committerKim F. Storm2002-05-28 22:04:14 +0000
commit5f64b52b67f2ca96607933a87f02ba54541ec202 (patch)
treee1347e0df4a5f9e437521c04675551b97054d28c
parent3ad83f29b5cc6e7b1e78dca4c0f7d31f9a852444 (diff)
downloademacs-5f64b52b67f2ca96607933a87f02ba54541ec202.tar.gz
emacs-5f64b52b67f2ca96607933a87f02ba54541ec202.zip
(open-network-stream-server): Pass on optional args
sentinel and filter to make-network-process (from Luke Gorrie).
-rw-r--r--lisp/simple.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index a2701047057..95b89eab04d 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4328,7 +4328,8 @@ functions to be used for the client processes; the server process
4328does not use these function." 4328does not use these function."
4329 (if (featurep 'make-network-process '(:server t)) 4329 (if (featurep 'make-network-process '(:server t))
4330 (make-network-process :name name :buffer buffer 4330 (make-network-process :name name :buffer buffer
4331 :service service :server t :noquery t))) 4331 :service service :server t :noquery t
4332 :sentinel sentinel :filter filter)))
4332 4333
4333)) ;; (featurep 'make-network-process) 4334)) ;; (featurep 'make-network-process)
4334 4335