aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2002-03-12 10:12:20 +0000
committerGerd Moellmann2002-03-12 10:12:20 +0000
commit656132ebd3ac2359182c1bf8822253c60bbdb153 (patch)
tree4bbdc0d2e64d015d3cac3c47c92519bbc8096861
parent4006b74e367da694696bd19773706c0ce69e19a1 (diff)
downloademacs-656132ebd3ac2359182c1bf8822253c60bbdb153.tar.gz
emacs-656132ebd3ac2359182c1bf8822253c60bbdb153.zip
Include stdio.h because termhooks.h needs it.
Include termopt.h for interrupt_input.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xsmfns.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7d4dab55bb5..575db7931a9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12002-03-12 Gerd Moellmann <gerd@gnu.org>
2
3 * xsmfns.c: Include stdio.h because termhooks.h needs it.
4 Include termopt.h for interrupt_input.
5
12002-03-11 Andreas Schwab <schwab@suse.de> 62002-03-11 Andreas Schwab <schwab@suse.de>
2 7
3 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix. 8 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
diff --git a/src/xsmfns.c b/src/xsmfns.c
index fe0570b665a..f0329b2559b 100644
--- a/src/xsmfns.c
+++ b/src/xsmfns.c
@@ -1,6 +1,6 @@
1/* Session management module for systems which understand the X Session 1/* Session management module for systems which understand the X Session
2 management protocol. 2 management protocol.
3 Copyright (C) 2002 Free Software Foundation, Inc. 3 Copyright (C) 2002, 2002 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -40,11 +40,13 @@ Boston, MA 02111-1307, USA. */
40#endif 40#endif
41 41
42#include <sys/param.h> 42#include <sys/param.h>
43#include <stdio.h>
43 44
44#include "systime.h" 45#include "systime.h"
45#include "sysselect.h" 46#include "sysselect.h"
46#include "lisp.h" 47#include "lisp.h"
47#include "termhooks.h" 48#include "termhooks.h"
49#include "termopts.h"
48 50
49#ifndef MAXPATHLEN 51#ifndef MAXPATHLEN
50#define MAXPATHLEN 1024 52#define MAXPATHLEN 1024