Mercurial > hg > xemacs-beta
view src/gtk-xemacs.h @ 4576:774e5c7522bf
Preserve the relation btw. file-name-coding-system & the 'file-name c-s alias.
lisp/ChangeLog addition:
2009-01-13 Aidan Kehoe <kehoea@parhasard.net>
* mule/mule-cmds.el (set-language-environment-coding-systems):
Fix a cosmetic bug; the relationship between
file-name-coding-system and the file-name coding system alias
established in coding.el wasn't being maintained. See Katsumi
Yamaoka's comment in http://mid.gmane.org/b4m4p03bt43.fsf@jpl.org .
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 13 Jan 2009 12:07:27 +0000 |
parents | 543769b89fed |
children | db7068430402 |
line wrap: on
line source
/* gtk-xemacs.h ** ** Description: A widget to encapsulate a XEmacs 'text widget' ** ** Created by: William M. Perry ** Copyright (c) 2000 William M. Perry <wmperry@gnu.org> ** */ #ifndef __GTK_XEMACS_H__ #define __GTK_XEMACS_H__ #include <config.h> #include "frame.h" #include <gdk/gdk.h> #include <gtk/gtkfixed.h> BEGIN_C_DECLS #define GTK_XEMACS(obj) GTK_CHECK_CAST (obj, gtk_xemacs_get_type (), GtkXEmacs) #define GTK_XEMACS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_xemacs_get_type (), GtkXEmacsClass) #define GTK_IS_XEMACS(obj) GTK_CHECK_TYPE (obj, gtk_xemacs_get_type ()) #define GTK_XEMACS_FRAME(obj) GTK_XEMACS (obj)->f typedef struct _GtkXEmacs GtkXEmacs; typedef struct _GtkXEmacsClass GtkXEmacsClass; struct _GtkXEmacs { GtkFixed fixed; struct frame *f; }; struct _GtkXEmacsClass { GtkFixedClass parent_class; }; guint gtk_xemacs_get_type (void); GtkWidget *gtk_xemacs_new (struct frame *f); END_C_DECLS #endif /* __GTK_XEMACS_H__ */