aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2009-10-19 16:58:18 +0000
committerDan Nicolaescu2009-10-19 16:58:18 +0000
commitb024548b44eb4f174dcd880f19717c23f95943b2 (patch)
tree6ea0a400d7f0a9267ad134e9d04a591dbbc32c46 /src
parent554efd10170fa345267d371205a91320b1389039 (diff)
downloademacs-b024548b44eb4f174dcd880f19717c23f95943b2.tar.gz
emacs-b024548b44eb4f174dcd880f19717c23f95943b2.zip
* nsterm.m:
* nsselect.m: * nsmenu.m: * nsimage.m: * nsfont.m: * nsfns.m: Include setjmp.h. (Bug#4643)
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/nsfns.m1
-rw-r--r--src/nsfont.m1
-rw-r--r--src/nsimage.m1
-rw-r--r--src/nsmenu.m1
-rw-r--r--src/nsselect.m1
-rw-r--r--src/nsterm.m1
7 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 97f27d0d14c..b3f9d9f51cf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -60,6 +60,12 @@
60 * ralloc.c: 60 * ralloc.c:
61 * process.c: 61 * process.c:
62 * print.c: 62 * print.c:
63 * nsterm.m:
64 * nsselect.m:
65 * nsmenu.m:
66 * nsimage.m:
67 * nsfont.m:
68 * nsfns.m:
63 * msdos.c: 69 * msdos.c:
64 * minibuf.c: 70 * minibuf.c:
65 * menu.c: 71 * menu.c:
diff --git a/src/nsfns.m b/src/nsfns.m
index e01edcadcc9..dbd41707e71 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -31,6 +31,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
31 31
32#include <signal.h> 32#include <signal.h>
33#include <math.h> 33#include <math.h>
34#include <setjmp.h>
34 35
35#include "lisp.h" 36#include "lisp.h"
36#include "blockinput.h" 37#include "blockinput.h"
diff --git a/src/nsfont.m b/src/nsfont.m
index f723acd3997..dded6a3b8a2 100644
--- a/src/nsfont.m
+++ b/src/nsfont.m
@@ -23,6 +23,7 @@ Author: Adrian Robert (arobert@cogsci.ucsd.edu)
23/* This should be the first include, as it may set up #defines affecting 23/* This should be the first include, as it may set up #defines affecting
24 interpretation of even the system includes. */ 24 interpretation of even the system includes. */
25#include "config.h" 25#include "config.h"
26#include <setjmp.h>
26 27
27#include "lisp.h" 28#include "lisp.h"
28#include "dispextern.h" 29#include "dispextern.h"
diff --git a/src/nsimage.m b/src/nsimage.m
index 87499b0a232..1f31a8c961c 100644
--- a/src/nsimage.m
+++ b/src/nsimage.m
@@ -28,6 +28,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
28/* This should be the first include, as it may set up #defines affecting 28/* This should be the first include, as it may set up #defines affecting
29 interpretation of even the system includes. */ 29 interpretation of even the system includes. */
30#include "config.h" 30#include "config.h"
31#include <setjmp.h>
31 32
32#include "lisp.h" 33#include "lisp.h"
33#include "dispextern.h" 34#include "dispextern.h"
diff --git a/src/nsmenu.m b/src/nsmenu.m
index 937073f074b..07cc3f0fcc3 100644
--- a/src/nsmenu.m
+++ b/src/nsmenu.m
@@ -24,6 +24,7 @@ Carbon version by Yamamoto Mitsuharu. */
24/* This should be the first include, as it may set up #defines affecting 24/* This should be the first include, as it may set up #defines affecting
25 interpretation of even the system includes. */ 25 interpretation of even the system includes. */
26#include "config.h" 26#include "config.h"
27#include <setjmp.h>
27 28
28#include "lisp.h" 29#include "lisp.h"
29#include "window.h" 30#include "window.h"
diff --git a/src/nsselect.m b/src/nsselect.m
index 665b8cfd5ef..677918f18c0 100644
--- a/src/nsselect.m
+++ b/src/nsselect.m
@@ -28,6 +28,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
28/* This should be the first include, as it may set up #defines affecting 28/* This should be the first include, as it may set up #defines affecting
29 interpretation of even the system includes. */ 29 interpretation of even the system includes. */
30#include "config.h" 30#include "config.h"
31#include <setjmp.h>
31 32
32#include "lisp.h" 33#include "lisp.h"
33#include "nsterm.h" 34#include "nsterm.h"
diff --git a/src/nsterm.m b/src/nsterm.m
index bc17f572a97..9256c084e28 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -34,6 +34,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
34#include <time.h> 34#include <time.h>
35#include <signal.h> 35#include <signal.h>
36#include <unistd.h> 36#include <unistd.h>
37#include <setjmp.h>
37 38
38#include "lisp.h" 39#include "lisp.h"
39#include "blockinput.h" 40#include "blockinput.h"