Mercurial > hg > xemacs-beta
view src/xmu.h @ 4380:461fdb92f3b6
Correct the perhaps_init_unseen_key_defaults GTK code; don't override X11 fonts.
2008-01-02 Aidan Kehoe <kehoea@parhasard.net>
* emacs.c (main_1):
Call the new vars_of_console_gtk function.
* console-gtk.c (vars_of_console_gtk): New.
* console-gtk.c (gtk_perhaps_init_unseen_key_defaults):
Correct the initialisation of the hash table, on the model of the
MSW and TTY builds.
2008-01-02 Aidan Kehoe <kehoea@parhasard.net>
* gtk-init.el (init-post-gtk-win):
Trust the X11 code to give us decent default fonts.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 02 Jan 2008 22:11:03 +0100 |
parents | abe6d1db359e |
children |
line wrap: on
line source
/* Compatibility routines based on code from the MIT Xmu library */ /* Synched up with: Not in FSF. */ #ifndef INCLUDED_xmu_h_ #define INCLUDED_xmu_h_ #ifdef HAVE_XMU # include <X11/Xmu/CharSet.h> # include <X11/Xmu/Converters.h> # include <X11/Xmu/CurUtil.h> # include <X11/Xmu/Drawing.h> # include <X11/Xmu/Error.h> # include <X11/Xmu/Misc.h> /* Do the EDITRES protocol if running X11R5 (or later) version */ #if (XtSpecificationRelease >= 5) /* #### No dice if we don't have XMU until someone ports _XEditResCheckMessages to xmu.c */ #define HACK_EDITRES #include <X11/Xmu/Editres.h> #endif /* R5+ */ #else int XmuCursorNameToIndex (const char *name); int XmuReadBitmapDataFromFile (const char *filename, unsigned int *width, unsigned int *height, unsigned char **datap, int *x_hot, int *y_hot); int XmuPrintDefaultErrorMessage (Display *dpy, XErrorEvent *event, FILE *fp); void XmuCopyISOLatin1Lowered (char *, const char *); #define Max(x, y) (((x) > (y)) ? (x) : (y)) #define Min(x, y) (((x) < (y)) ? (x) : (y)) #define AssignMax(x, y) {if ((y) > (x)) x = (y);} #define AssignMin(x, y) {if ((y) < (x)) x = (y);} typedef enum {XtorientHorizontal, XtorientVertical} XtOrientation; #endif /* HAVE_XMU */ #endif /* INCLUDED_xmu_h_ */