diff options
| author | Jan Djärv | 2003-01-21 18:14:05 +0000 |
|---|---|---|
| committer | Jan Djärv | 2003-01-21 18:14:05 +0000 |
| commit | e87944765bf4353c0b9b30b3d11172247da35d29 (patch) | |
| tree | 45a083929313632ca6f45ea2c46debb49d5e2d5e /src | |
| parent | 83fc9c63ea72d892d0d0b315a4dee478f3e71934 (diff) | |
| download | emacs-e87944765bf4353c0b9b30b3d11172247da35d29.tar.gz emacs-e87944765bf4353c0b9b30b3d11172247da35d29.zip | |
gtkutil.c: Must include stdio.h before termhooks.h
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/gtkutil.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b08445ecd46..270a3d2e434 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-01-21 Jan D. <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * gtkutil.c: Must include stdio.h before termhooks.h | ||
| 4 | |||
| 1 | 2003-01-21 Dave Love <fx@gnu.org> | 5 | 2003-01-21 Dave Love <fx@gnu.org> |
| 2 | 6 | ||
| 3 | * alloc.c (Fgc_status): Print zombie list. | 7 | * alloc.c (Fgc_status): Print zombie list. |
diff --git a/src/gtkutil.c b/src/gtkutil.c index 7ceddef02f6..ba5ffb97155 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -22,6 +22,8 @@ Boston, MA 02111-1307, USA. */ | |||
| 22 | #include "config.h" | 22 | #include "config.h" |
| 23 | 23 | ||
| 24 | #ifdef USE_GTK | 24 | #ifdef USE_GTK |
| 25 | #include <string.h> | ||
| 26 | #include <stdio.h> | ||
| 25 | #include "lisp.h" | 27 | #include "lisp.h" |
| 26 | #include "xterm.h" | 28 | #include "xterm.h" |
| 27 | #include "blockinput.h" | 29 | #include "blockinput.h" |
| @@ -29,8 +31,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 29 | #include "atimer.h" | 31 | #include "atimer.h" |
| 30 | #include "gtkutil.h" | 32 | #include "gtkutil.h" |
| 31 | #include "termhooks.h" | 33 | #include "termhooks.h" |
| 32 | #include <string.h> | ||
| 33 | #include <stdio.h> | ||
| 34 | #include <gdk/gdkkeysyms.h> | 34 | #include <gdk/gdkkeysyms.h> |
| 35 | 35 | ||
| 36 | #define FRAME_TOTAL_PIXEL_HEIGHT(f) \ | 36 | #define FRAME_TOTAL_PIXEL_HEIGHT(f) \ |