Index: emacs/src/macgui.h
diff -c emacs/src/macgui.h:1.19 emacs/src/macgui.h:1.20
*** emacs/src/macgui.h:1.19     Mon Jul  4 16:06:33 2005
--- emacs/src/macgui.h  Mon Jul 18 05:39:27 2005
***************
*** 180,194 ****
    XFontStruct *font;
  } XGCValues;
  
! typedef XGCValues *GC;
! 
! extern XGCValues *
! XCreateGC (void *, Window, unsigned long, XGCValues *);
! 
! #define GCForeground 0x01
! #define GCBackground 0x02
! #define GCFont 0x03
! #define GCGraphicsExposures 0
  
  /* Bit Gravity */
  
--- 180,203 ----
    XFontStruct *font;
  } XGCValues;
  
! typedef struct _XGC
! {
!   /* Original value.  */
!   XGCValues xgcv;
! 
!   /* Cached data members follow.  */
! 
!   /* QuickDraw foreground color.  */
!   RGBColor fore_color;
! 
!   /* QuickDraw background color.  */
!   RGBColor back_color;
! } *GC;
! 
! #define GCForeground            (1L<<2)
! #define GCBackground            (1L<<3)
! #define GCFont                        (1L<<14)
! #define GCGraphicsExposures   0
  
  /* Bit Gravity */
  
***************
*** 247,254 ****
  #define PAspect               (1L << 7) /* program specified min and max 
aspect ratios */
  #define PBaseSize     (1L << 8) /* program specified base for incrementing */
  #define PWinGravity   (1L << 9) /* program specified window gravity */
- 
- extern int XParseGeometry ();
  
  typedef struct {
      int x, y;
--- 256,261 ----


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to