diff options
| author | Dan Nicolaescu | 2010-06-01 21:29:53 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-06-01 21:29:53 -0700 |
| commit | 08a494a3b08c63fdd45130d460f5f7d9f8f9396b (patch) | |
| tree | a23ecb1db1976a0d3cdaf6297139c9753be17782 /src | |
| parent | 75934b1d0f47b862ec19fa8a96563176b1562154 (diff) | |
| download | emacs-08a494a3b08c63fdd45130d460f5f7d9f8f9396b.tar.gz emacs-08a494a3b08c63fdd45130d460f5f7d9f8f9396b.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 11 | ||||
| -rw-r--r-- | src/dbusbind.c | 2 | ||||
| -rw-r--r-- | src/nsfns.m | 2 | ||||
| -rw-r--r-- | src/nsfont.m | 2 | ||||
| -rw-r--r-- | src/nsimage.m | 2 | ||||
| -rw-r--r-- | src/nsselect.m | 2 | ||||
| -rw-r--r-- | src/nsterm.m | 2 | ||||
| -rw-r--r-- | src/xgselect.c | 2 | ||||
| -rw-r--r-- | src/xsettings.c | 2 |
9 files changed, 19 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c641043e400..44807660415 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | Fix config.h includes. | ||
| 4 | * xsettings.c: | ||
| 5 | * xgselect.c: | ||
| 6 | * nsterm.m: | ||
| 7 | * nsselect.m: | ||
| 8 | * nsimage.m: | ||
| 9 | * nsfont.m: | ||
| 10 | * nsfns.m: | ||
| 11 | * dbusbind.c: Use #include <config.h> instead of "config.h" as all | ||
| 12 | other files do. | ||
| 13 | |||
| 3 | * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused. | 14 | * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused. |
| 4 | 15 | ||
| 5 | * s/sol2-6.h: Remove obsolete comments. | 16 | * s/sol2-6.h: Remove obsolete comments. |
diff --git a/src/dbusbind.c b/src/dbusbind.c index 5cad182b525..a72a95552bc 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -16,7 +16,7 @@ GNU General Public License for more details. | |||
| 16 | You should have received a copy of the GNU General Public License | 16 | You should have received a copy of the GNU General Public License |
| 17 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 17 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 18 | 18 | ||
| 19 | #include "config.h" | 19 | #include <config.h> |
| 20 | 20 | ||
| 21 | #ifdef HAVE_DBUS | 21 | #ifdef HAVE_DBUS |
| 22 | #include <stdlib.h> | 22 | #include <stdlib.h> |
diff --git a/src/nsfns.m b/src/nsfns.m index 7e7fd48caf0..53264a5f595 100644 --- a/src/nsfns.m +++ b/src/nsfns.m | |||
| @@ -27,7 +27,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu) | |||
| 27 | 27 | ||
| 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 | 31 | ||
| 32 | #include <signal.h> | 32 | #include <signal.h> |
| 33 | #include <math.h> | 33 | #include <math.h> |
diff --git a/src/nsfont.m b/src/nsfont.m index 59d5ee73db1..db2399a7fa0 100644 --- a/src/nsfont.m +++ b/src/nsfont.m | |||
| @@ -22,7 +22,7 @@ Author: Adrian Robert (arobert@cogsci.ucsd.edu) | |||
| 22 | 22 | ||
| 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 | #include <setjmp.h> |
| 27 | 27 | ||
| 28 | #include "lisp.h" | 28 | #include "lisp.h" |
diff --git a/src/nsimage.m b/src/nsimage.m index 09a78e20809..3e6a8c77ed7 100644 --- a/src/nsimage.m +++ b/src/nsimage.m | |||
| @@ -27,7 +27,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu) | |||
| 27 | 27 | ||
| 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 | #include <setjmp.h> |
| 32 | 32 | ||
| 33 | #include "lisp.h" | 33 | #include "lisp.h" |
diff --git a/src/nsselect.m b/src/nsselect.m index e4f5f0c613e..b034eacf77c 100644 --- a/src/nsselect.m +++ b/src/nsselect.m | |||
| @@ -27,7 +27,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu) | |||
| 27 | 27 | ||
| 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 | #include <setjmp.h> |
| 32 | 32 | ||
| 33 | #include "lisp.h" | 33 | #include "lisp.h" |
diff --git a/src/nsterm.m b/src/nsterm.m index 7bc82e96104..14b824057da 100644 --- a/src/nsterm.m +++ b/src/nsterm.m | |||
| @@ -27,7 +27,7 @@ GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu) | |||
| 27 | 27 | ||
| 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 | 31 | ||
| 32 | #include <math.h> | 32 | #include <math.h> |
| 33 | #include <sys/types.h> | 33 | #include <sys/types.h> |
diff --git a/src/xgselect.c b/src/xgselect.c index d93c1bdf405..42fff2d98da 100644 --- a/src/xgselect.c +++ b/src/xgselect.c | |||
| @@ -17,7 +17,7 @@ GNU General Public License for more details. | |||
| 17 | You should have received a copy of the GNU General Public License | 17 | You should have received a copy of the GNU General Public License |
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 19 | 19 | ||
| 20 | #include "config.h" | 20 | #include <config.h> |
| 21 | 21 | ||
| 22 | #if defined (USE_GTK) || defined (HAVE_GCONF) | 22 | #if defined (USE_GTK) || defined (HAVE_GCONF) |
| 23 | #include <glib.h> | 23 | #include <glib.h> |
diff --git a/src/xsettings.c b/src/xsettings.c index f1b4c8c9b23..8cfcafe126d 100644 --- a/src/xsettings.c +++ b/src/xsettings.c | |||
| @@ -17,7 +17,7 @@ GNU General Public License for more details. | |||
| 17 | You should have received a copy of the GNU General Public License | 17 | You should have received a copy of the GNU General Public License |
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 19 | 19 | ||
| 20 | #include "config.h" | 20 | #include <config.h> |
| 21 | #include <limits.h> | 21 | #include <limits.h> |
| 22 | #include <setjmp.h> | 22 | #include <setjmp.h> |
| 23 | #include <fcntl.h> | 23 | #include <fcntl.h> |