2005-12-02 [wwp] 1.9.100cvs54

* src/quote_fmt.h
	* src/quote_fmt_parse.y
		fix misuse of gboolean*, use gboolean instead
		(thanks to Paul, Colin, for pointing out that scaring one)
This commit is contained in:
Tristan Chabredier 2005-12-02 14:44:22 +00:00
parent 07201e8e17
commit 9383abf4af
5 changed files with 12 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2005-12-02 [wwp] 1.9.100cvs54
* src/quote_fmt.h
* src/quote_fmt_parse.y
fix misuse of gboolean*, use gboolean instead
(thanks to Paul, Colin, for pointing out that scaring one)
2005-12-02 [paul] 1.9.100cvs53
* src/plugins/clamav/clamav_plugin.c

View file

@ -1037,3 +1037,4 @@
( cvs diff -u -r 1.204.2.69 -r 1.204.2.70 src/prefs_common.c; ) > 1.9.100cvs51.patchset
( cvs diff -u -r 1.382.2.198 -r 1.382.2.199 src/compose.c; cvs diff -u -r 1.12.2.17 -r 1.12.2.18 src/prefs_template.c; cvs diff -u -r 1.5.12.2 -r 1.5.12.3 src/quote_fmt.h; cvs diff -u -r 1.22.2.14 -r 1.22.2.15 src/quote_fmt_parse.y; ) > 1.9.100cvs52.patchset
( cvs diff -u -r 1.13.2.15 -r 1.13.2.16 src/plugins/clamav/clamav_plugin.c; cvs diff -u -r 1.9.2.12 -r 1.9.2.13 src/plugins/clamav/clamav_plugin_gtk.c; ) > 1.9.100cvs53.patchset
( cvs diff -u -r 1.5.12.3 -r 1.5.12.4 src/quote_fmt.h; cvs diff -u -r 1.22.2.15 -r 1.22.2.16 src/quote_fmt_parse.y; ) > 1.9.100cvs54.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=9
MICRO_VERSION=100
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=53
EXTRA_VERSION=54
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -8,7 +8,7 @@ void quote_fmt_quote_description(void);
gchar *quote_fmt_get_buffer(void);
void quote_fmt_init(MsgInfo *info, const gchar *my_quote_str,
const gchar *my_body, gboolean *my_dry_run);
const gchar *my_body, gboolean my_dry_run);
gint quote_fmtparse(void);
void quote_fmt_scan_string(const gchar *str);

View file

@ -42,7 +42,7 @@ int yylex(void);
static MsgInfo *msginfo = NULL;
static gboolean *visible = NULL;
static gboolean *dry_run = NULL;
static gboolean dry_run = FALSE;
static gint maxsize = 0;
static gint stacksize = 0;
@ -117,7 +117,7 @@ gint quote_fmt_get_cursor_pos(void)
}
void quote_fmt_init(MsgInfo *info, const gchar *my_quote_str,
const gchar *my_body, gboolean* my_dry_run)
const gchar *my_body, gboolean my_dry_run)
{
quote_str = my_quote_str;
body = my_body;