emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src ChangeLog nsfns.m nsfont.m nsimage.m ...


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs/src ChangeLog nsfns.m nsfont.m nsimage.m ...
Date: Mon, 19 Oct 2009 16:58:20 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   09/10/19 16:58:20

Modified files:
        src            : ChangeLog nsfns.m nsfont.m nsimage.m nsmenu.m 
                         nsselect.m nsterm.m 

Log message:
        * nsterm.m:
        * nsselect.m:
        * nsmenu.m:
        * nsimage.m:
        * nsfont.m:
        * nsfns.m: Include setjmp.h.  (Bug#4643)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7801&r2=1.7802
http://cvs.savannah.gnu.org/viewcvs/emacs/src/nsfns.m?cvsroot=emacs&r1=1.53&r2=1.54
http://cvs.savannah.gnu.org/viewcvs/emacs/src/nsfont.m?cvsroot=emacs&r1=1.40&r2=1.41
http://cvs.savannah.gnu.org/viewcvs/emacs/src/nsimage.m?cvsroot=emacs&r1=1.11&r2=1.12
http://cvs.savannah.gnu.org/viewcvs/emacs/src/nsmenu.m?cvsroot=emacs&r1=1.29&r2=1.30
http://cvs.savannah.gnu.org/viewcvs/emacs/src/nsselect.m?cvsroot=emacs&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/emacs/src/nsterm.m?cvsroot=emacs&r1=1.94&r2=1.95

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7801
retrieving revision 1.7802
diff -u -b -r1.7801 -r1.7802
--- ChangeLog   19 Oct 2009 05:13:31 -0000      1.7801
+++ ChangeLog   19 Oct 2009 16:58:18 -0000      1.7802
@@ -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:

Index: nsfns.m
===================================================================
RCS file: /cvsroot/emacs/emacs/src/nsfns.m,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -b -r1.53 -r1.54
--- nsfns.m     12 Oct 2009 00:26:38 -0000      1.53
+++ nsfns.m     19 Oct 2009 16:58:19 -0000      1.54
@@ -31,6 +31,7 @@
 
 #include <signal.h>
 #include <math.h>
+#include <setjmp.h>
 
 #include "lisp.h"
 #include "blockinput.h"

Index: nsfont.m
===================================================================
RCS file: /cvsroot/emacs/emacs/src/nsfont.m,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -b -r1.40 -r1.41
--- nsfont.m    13 Oct 2009 01:05:18 -0000      1.40
+++ nsfont.m    19 Oct 2009 16:58:19 -0000      1.41
@@ -23,6 +23,7 @@
 /* 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"

Index: nsimage.m
===================================================================
RCS file: /cvsroot/emacs/emacs/src/nsimage.m,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- nsimage.m   12 Oct 2009 00:26:41 -0000      1.11
+++ nsimage.m   19 Oct 2009 16:58:20 -0000      1.12
@@ -28,6 +28,7 @@
 /* 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"

Index: nsmenu.m
===================================================================
RCS file: /cvsroot/emacs/emacs/src/nsmenu.m,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- nsmenu.m    12 Oct 2009 00:27:13 -0000      1.29
+++ nsmenu.m    19 Oct 2009 16:58:20 -0000      1.30
@@ -24,6 +24,7 @@
 /* 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"

Index: nsselect.m
===================================================================
RCS file: /cvsroot/emacs/emacs/src/nsselect.m,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- nsselect.m  5 Jun 2009 14:08:17 -0000       1.13
+++ nsselect.m  19 Oct 2009 16:58:20 -0000      1.14
@@ -28,6 +28,7 @@
 /* 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"

Index: nsterm.m
===================================================================
RCS file: /cvsroot/emacs/emacs/src/nsterm.m,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -b -r1.94 -r1.95
--- nsterm.m    16 Oct 2009 03:09:02 -0000      1.94
+++ nsterm.m    19 Oct 2009 16:58:20 -0000      1.95
@@ -34,6 +34,7 @@
 #include <time.h>
 #include <signal.h>
 #include <unistd.h>
+#include <setjmp.h>
 
 #include "lisp.h"
 #include "blockinput.h"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]