emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r100503: Fix config.h includes.


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100503: Fix config.h includes.
Date: Tue, 01 Jun 2010 21:29:53 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100503
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Tue 2010-06-01 21:29:53 -0700
message:
  Fix config.h includes.
  * src/xsettings.c:
  * src/xgselect.c:
  * src/nsterm.m:
  * src/nsselect.m:
  * src/nsimage.m:
  * src/nsfont.m:
  * src/nsfns.m:
  * src/dbusbind.c: Use #include <config.h> instead of "config.h" as all
  other files do.
modified:
  src/ChangeLog
  src/dbusbind.c
  src/nsfns.m
  src/nsfont.m
  src/nsimage.m
  src/nsselect.m
  src/nsterm.m
  src/xgselect.c
  src/xsettings.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-06-02 02:47:43 +0000
+++ b/src/ChangeLog     2010-06-02 04:29:53 +0000
@@ -1,5 +1,16 @@
 2010-06-02  Dan Nicolaescu  <address@hidden>
 
+       Fix config.h includes.
+       * xsettings.c:
+       * xgselect.c:
+       * nsterm.m:
+       * nsselect.m:
+       * nsimage.m:
+       * nsfont.m:
+       * nsfns.m:
+       * dbusbind.c: Use #include <config.h> instead of "config.h" as all
+       other files do.
+
        * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
 
        * s/sol2-6.h: Remove obsolete comments.

=== modified file 'src/dbusbind.c'
--- a/src/dbusbind.c    2010-01-13 08:35:10 +0000
+++ b/src/dbusbind.c    2010-06-02 04:29:53 +0000
@@ -16,7 +16,7 @@
 You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
-#include "config.h"
+#include <config.h>
 
 #ifdef HAVE_DBUS
 #include <stdlib.h>

=== modified file 'src/nsfns.m'
--- a/src/nsfns.m       2010-04-03 01:54:24 +0000
+++ b/src/nsfns.m       2010-06-02 04:29:53 +0000
@@ -27,7 +27,7 @@
 
 /* This should be the first include, as it may set up #defines affecting
    interpretation of even the system includes. */
-#include "config.h"
+#include <config.h>
 
 #include <signal.h>
 #include <math.h>

=== modified file 'src/nsfont.m'
--- a/src/nsfont.m      2010-02-26 00:48:53 +0000
+++ b/src/nsfont.m      2010-06-02 04:29:53 +0000
@@ -22,7 +22,7 @@
 
 /* This should be the first include, as it may set up #defines affecting
    interpretation of even the system includes. */
-#include "config.h"
+#include <config.h>
 #include <setjmp.h>
 
 #include "lisp.h"

=== modified file 'src/nsimage.m'
--- a/src/nsimage.m     2010-01-13 08:35:10 +0000
+++ b/src/nsimage.m     2010-06-02 04:29:53 +0000
@@ -27,7 +27,7 @@
 
 /* This should be the first include, as it may set up #defines affecting
    interpretation of even the system includes. */
-#include "config.h"
+#include <config.h>
 #include <setjmp.h>
 
 #include "lisp.h"

=== modified file 'src/nsselect.m'
--- a/src/nsselect.m    2010-01-13 08:35:10 +0000
+++ b/src/nsselect.m    2010-06-02 04:29:53 +0000
@@ -27,7 +27,7 @@
 
 /* This should be the first include, as it may set up #defines affecting
    interpretation of even the system includes. */
-#include "config.h"
+#include <config.h>
 #include <setjmp.h>
 
 #include "lisp.h"

=== modified file 'src/nsterm.m'
--- a/src/nsterm.m      2010-03-29 23:48:44 +0000
+++ b/src/nsterm.m      2010-06-02 04:29:53 +0000
@@ -27,7 +27,7 @@
 
 /* This should be the first include, as it may set up #defines affecting
    interpretation of even the system includes. */
-#include "config.h"
+#include <config.h>
 
 #include <math.h>
 #include <sys/types.h>

=== modified file 'src/xgselect.c'
--- a/src/xgselect.c    2010-01-13 08:35:10 +0000
+++ b/src/xgselect.c    2010-06-02 04:29:53 +0000
@@ -17,7 +17,7 @@
 You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
-#include "config.h"
+#include <config.h>
 
 #if defined (USE_GTK) || defined (HAVE_GCONF)
 #include <glib.h>

=== modified file 'src/xsettings.c'
--- a/src/xsettings.c   2010-05-08 12:04:47 +0000
+++ b/src/xsettings.c   2010-06-02 04:29:53 +0000
@@ -17,7 +17,7 @@
 You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
-#include "config.h"
+#include <config.h>
 #include <limits.h>
 #include <setjmp.h>
 #include <fcntl.h>


reply via email to

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