aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/emacsclient.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index a2a55fd0dc5..72cf2613e6f 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12008-12-11 dhruva <dhruvakm@gmail.com> (tiny change)
2
3 * emacsclient.c (WCONTINUED): New compatibility define for older systems.
4
12008-12-10 Dan Nicolaescu <dann@ics.uci.edu> 52008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
2 6
3 * emacsclient.c (main): Fix previous change. 7 * emacsclient.c (main): Fix previous change.
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 7fbedbce141..e8e5ea4bf98 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -54,6 +54,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
54# define CLOSE_SOCKET close 54# define CLOSE_SOCKET close
55# define INITIALIZE() 55# define INITIALIZE()
56 56
57# ifndef WCONTINUED
58# define WCONTINUED 8
59# endif
60
57#endif /* !WINDOWSNT */ 61#endif /* !WINDOWSNT */
58 62
59#undef signal 63#undef signal