Mercurial > hg > xemacs-beta
changeset 809:285f13b079f3
[xemacs-hg @ 2002-04-07 16:01:30 by wmperry]
Make GTK compile again because of lack of device.h/window.h includes.
author | wmperry |
---|---|
date | Sun, 07 Apr 2002 16:01:32 +0000 |
parents | aa9a0cd78930 |
children | 0f42d0a17667 |
files | src/ChangeLog src/device-gtk.c src/event-gtk.c src/frame-gtk.c src/glyphs-gtk.c src/gtk-xemacs.c src/menubar-gtk.c src/redisplay-gtk.c |
diffstat | 8 files changed, 22 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Apr 05 12:30:45 2002 +0000 +++ b/src/ChangeLog Sun Apr 07 16:01:32 2002 +0000 @@ -1,3 +1,15 @@ +2002-04-07 William M. Perry <wmperry@gnu.org> + + * event-gtk.c: + * device-gtk.c: + * glyphs-gtk.c: + * frame-gtk.c: + * gtk-xemacs.c: + * menubar-gtk.c: + * redisplay-gtk.c: Need to include device.h and window.h in a few + places. Not sure which .h has changed that was transparently + pulling them in before, but... + 2002-03-06 Jerry James <james@xemacs.org> * emodules.c (emodules_load): Fix multiple loading of same module.
--- a/src/device-gtk.c Fri Apr 05 12:30:45 2002 +0000 +++ b/src/device-gtk.c Sun Apr 07 16:01:32 2002 +0000 @@ -38,6 +38,7 @@ #include "events.h" #include "faces.h" #include "frame.h" +#include "device.h" #include "redisplay.h" #include "sysdep.h" #include "window.h"
--- a/src/event-gtk.c Fri Apr 05 12:30:45 2002 +0000 +++ b/src/event-gtk.c Sun Apr 07 16:01:32 2002 +0000 @@ -41,6 +41,8 @@ #include "process.h" #include "redisplay.h" #include "elhash.h" +#include "window.h" +#include "device.h" #include "gtk-xemacs.h" @@ -192,9 +194,6 @@ static void handle_client_message (struct frame *f, GdkEvent *event) { - Lisp_Object frame = wrap_frame (f); - - /* The event-Xt code used to handle WM_DELETE_WINDOW here, but we handle that directly in frame-gtk.c */
--- a/src/frame-gtk.c Fri Apr 05 12:30:45 2002 +0000 +++ b/src/frame-gtk.c Sun Apr 07 16:01:32 2002 +0000 @@ -40,6 +40,7 @@ #include "extents.h" #include "faces.h" #include "frame.h" +#include "device.h" #include "window.h" #ifdef HAVE_GNOME
--- a/src/glyphs-gtk.c Fri Apr 05 12:30:45 2002 +0000 +++ b/src/glyphs-gtk.c Sun Apr 07 16:01:32 2002 +0000 @@ -59,6 +59,8 @@ #include "buffer.h" #include "window.h" +#include "device.h" +#include "gui.h" #include "frame.h" #include "insdel.h" #include "opaque.h"
--- a/src/gtk-xemacs.c Fri Apr 05 12:30:45 2002 +0000 +++ b/src/gtk-xemacs.c Sun Apr 07 16:01:32 2002 +0000 @@ -13,6 +13,8 @@ #include "console-gtk.h" #include "objects-gtk.h" #include "gtk-xemacs.h" +#include "device.h" +#include "glyphs.h" #include "window.h" #include "faces.h" #include "event-gtk.h"