From 30dfdf8755121672c03041b2b0e4290321a6abd8 Mon Sep 17 00:00:00 2001 From: Eduardo Bellani Date: Mon, 26 Nov 2018 11:55:30 -0200 Subject: [PATCH] Fix make-network-process to work with emacs 25.1+ See https://www.reddit.com/r/emacs/comments/5azqjr/emacs_web_server_problems/d9mltkw For an explanation --- elnode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elnode.el b/elnode.el index 9d6cc91..c9f7e97 100644 --- a/elnode.el +++ b/elnode.el @@ -1116,7 +1116,7 @@ is ignored." :name name :buffer an-buf :server (if (numberp port) 300 't) - :nowait 't + :nowait nil :host (cond ((not (numberp port)) nil) ((equal host "localhost") 'local)