From 5445ab06efed54ee33e8c39ca07037277554969a Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Thu, 11 Dec 2008 17:32:44 +0000 Subject: [PATCH] (WCONTINUED): New compatibility define for older systems. --- lib-src/ChangeLog | 4 ++++ lib-src/emacsclient.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index a2a55fd0dc..72cf2613e6 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2008-12-11 dhruva (tiny change) + + * emacsclient.c (WCONTINUED): New compatibility define for older systems. + 2008-12-10 Dan Nicolaescu * emacsclient.c (main): Fix previous change. diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 7fbedbce14..e8e5ea4bf9 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -54,6 +54,10 @@ along with GNU Emacs. If not, see . */ # define CLOSE_SOCKET close # define INITIALIZE() +# ifndef WCONTINUED +# define WCONTINUED 8 +# endif + #endif /* !WINDOWSNT */ #undef signal -- 2.20.1