diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-10-19 16:58:18 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-10-19 16:58:18 +0000 |
commit | b024548b44eb4f174dcd880f19717c23f95943b2 (patch) | |
tree | 6ea0a400d7f0a9267ad134e9d04a591dbbc32c46 /src | |
parent | 554efd10170fa345267d371205a91320b1389039 (diff) | |
download | emacs-b024548b44eb4f174dcd880f19717c23f95943b2.tar.gz |
* 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/ChangeLog | 6 | ||||
-rw-r--r-- | src/nsfns.m | 1 | ||||
-rw-r--r-- | src/nsfont.m | 1 | ||||
-rw-r--r-- | src/nsimage.m | 1 | ||||
-rw-r--r-- | src/nsmenu.m | 1 | ||||
-rw-r--r-- | src/nsselect.m | 1 | ||||
-rw-r--r-- | src/nsterm.m | 1 |
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 @@ * ralloc.c: * process.c: * print.c: + * nsterm.m: + * nsselect.m: + * nsmenu.m: + * nsimage.m: + * nsfont.m: + * nsfns.m: * msdos.c: * minibuf.c: * 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) #include <signal.h> #include <math.h> +#include <setjmp.h> #include "lisp.h" #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) /* This should be the first include, as it may set up #defines affecting interpretation of even the system includes. */ #include "config.h" +#include <setjmp.h> #include "lisp.h" #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) /* This should be the first include, as it may set up #defines affecting interpretation of even the system includes. */ #include "config.h" +#include <setjmp.h> #include "lisp.h" #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. */ /* This should be the first include, as it may set up #defines affecting interpretation of even the system includes. */ #include "config.h" +#include <setjmp.h> #include "lisp.h" #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) /* This should be the first include, as it may set up #defines affecting interpretation of even the system includes. */ #include "config.h" +#include <setjmp.h> #include "lisp.h" #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) #include <time.h> #include <signal.h> #include <unistd.h> +#include <setjmp.h> #include "lisp.h" #include "blockinput.h" |