Better compatibility with some compilers and CFLAGS

This commit is contained in:
Wen-Yen Chuang 2012-05-21 15:40:23 +08:00
parent e45f9fc8cf
commit 361087886a
7 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,8 @@
2012-04-07
version UNRELEASED:
* Better compatibility with some compilers and CFLAGS
Thanks to Daniel Richard G. <skunk AT iSKUNK DOT ORG>
* Revert workaround for line number color, fixed by GTK+ upstream.
2012-02-20

View File

@ -18,6 +18,7 @@
*/
#include <gtk/gtk.h>
#include "gtkprint.h"
static PangoLayout *layout;
static const PangoFontDescription *font_desc;

View File

@ -21,6 +21,7 @@
#include <gtk/gtk.h>
//#include <gdk/gdkkeysyms.h>
#include <undo.h>
#include "indent.h"
static gboolean auto_indent = FALSE;
static gint default_tab_width = 8;

View File

@ -28,6 +28,10 @@
#include <glib.h>
#include <glib/gi18n.h>
#ifndef ENABLE_EMACS
#define ENABLE_EMACS 0
#endif
#ifndef ENABLE_PRINT
#define ENABLE_PRINT 1
#endif
@ -114,7 +118,9 @@ typedef struct {
MainWin *mw;
} PublicData;
PublicData *pub;
#ifndef _L3AFPAD_MAIN
extern PublicData *pub;
#endif
void save_config_file(void);

View File

@ -18,6 +18,7 @@
*/
#include <gtk/gtk.h>
#include "linenum.h"
#define DV(x)

View File

@ -17,12 +17,15 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#define _L3AFPAD_MAIN
#include "l3afpad.h"
#include <glib/gstdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
PublicData *pub;
typedef struct {
gint width;
gint height;

View File

@ -20,6 +20,8 @@
#ifndef _UNDO_H
#define _UNDO_H
gboolean undo_redo_real(GtkTextBuffer *buffer);
gboolean undo_undo_real(GtkTextBuffer *buffer);
void undo_reset_modified_step(GtkTextBuffer *buffer);
void undo_clear_all(GtkTextBuffer *buffer);
void undo_init(GtkWidget *view, GtkWidget *undo_button, GtkWidget *redo_button);