Better compatibility with some compilers and CFLAGS
This commit is contained in:
parent
e45f9fc8cf
commit
361087886a
@ -1,6 +1,8 @@
|
|||||||
2012-04-07
|
2012-04-07
|
||||||
|
|
||||||
version UNRELEASED:
|
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.
|
* Revert workaround for line number color, fixed by GTK+ upstream.
|
||||||
|
|
||||||
2012-02-20
|
2012-02-20
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
#include "gtkprint.h"
|
||||||
|
|
||||||
static PangoLayout *layout;
|
static PangoLayout *layout;
|
||||||
static const PangoFontDescription *font_desc;
|
static const PangoFontDescription *font_desc;
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
//#include <gdk/gdkkeysyms.h>
|
//#include <gdk/gdkkeysyms.h>
|
||||||
#include <undo.h>
|
#include <undo.h>
|
||||||
|
#include "indent.h"
|
||||||
|
|
||||||
static gboolean auto_indent = FALSE;
|
static gboolean auto_indent = FALSE;
|
||||||
static gint default_tab_width = 8;
|
static gint default_tab_width = 8;
|
||||||
|
@ -28,6 +28,10 @@
|
|||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
#include <glib/gi18n.h>
|
#include <glib/gi18n.h>
|
||||||
|
|
||||||
|
#ifndef ENABLE_EMACS
|
||||||
|
#define ENABLE_EMACS 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef ENABLE_PRINT
|
#ifndef ENABLE_PRINT
|
||||||
#define ENABLE_PRINT 1
|
#define ENABLE_PRINT 1
|
||||||
#endif
|
#endif
|
||||||
@ -114,7 +118,9 @@ typedef struct {
|
|||||||
MainWin *mw;
|
MainWin *mw;
|
||||||
} PublicData;
|
} PublicData;
|
||||||
|
|
||||||
PublicData *pub;
|
#ifndef _L3AFPAD_MAIN
|
||||||
|
extern PublicData *pub;
|
||||||
|
#endif
|
||||||
|
|
||||||
void save_config_file(void);
|
void save_config_file(void);
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
#include "linenum.h"
|
||||||
|
|
||||||
#define DV(x)
|
#define DV(x)
|
||||||
|
|
||||||
|
@ -17,12 +17,15 @@
|
|||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define _L3AFPAD_MAIN
|
||||||
#include "l3afpad.h"
|
#include "l3afpad.h"
|
||||||
#include <glib/gstdio.h>
|
#include <glib/gstdio.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
PublicData *pub;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
gint width;
|
gint width;
|
||||||
gint height;
|
gint height;
|
||||||
|
@ -20,6 +20,8 @@
|
|||||||
#ifndef _UNDO_H
|
#ifndef _UNDO_H
|
||||||
#define _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_reset_modified_step(GtkTextBuffer *buffer);
|
||||||
void undo_clear_all(GtkTextBuffer *buffer);
|
void undo_clear_all(GtkTextBuffer *buffer);
|
||||||
void undo_init(GtkWidget *view, GtkWidget *undo_button, GtkWidget *redo_button);
|
void undo_init(GtkWidget *view, GtkWidget *undo_button, GtkWidget *redo_button);
|
||||||
|
Loading…
Reference in New Issue
Block a user