patch #856724/857342 and odds and ends.

This commit is contained in:
brianb
2004-02-09 20:37:27 +00:00
parent 7ef02592d0
commit e352e80eb1
5 changed files with 12 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
bin_PROGRAMS = mdb-dump
mdb_dump_SOURCES = mdb-dump.c mdbsupport.c
bin_PROGRAMS = mdb-hexdump
mdb_hexdump_SOURCES = mdb-dump.c mdbsupport.c
EXTRA_DIST = mdbsupport.h
AM_CPPFLAGS = -I$(top_srcdir)/include $(GLIB_CFLAGS)
LDADD = ../libmdb/libmdb.la

View File

@@ -47,7 +47,7 @@
<property name="use_stock">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
<property name="response_id">-6</property>
<signal name="clicked" handler="gmdb_schema_export_cb" object="schema_dialog" last_modification_time="Sun, 29 Dec 2002 21:00:13 GMT"/>
<signal name="clicked" handler="gtk_widget_destroy" object="schema_dialog" last_modification_time="Mon, 12 Jan 2004 18:40:24 GMT"/>
</widget>
</child>

View File

@@ -51,7 +51,7 @@ like { return LIKE; }
[A-z][A-z0-9_#@]* { yylval.name = strdup(yytext); return NAME; }
'[A-z0-9 !@#$%^&*()-_+={}[\];:",.<>/?`~|\\]*' { yylval.name = strdup(yytext); return STRING; }
([0-9]+|([0-9]*\.[0-9+)([eE][-+]?[0-9]+)?) {
(-*[0-9]+|([0-9]*\.[0-9+)([eE][-+]?[0-9]+)?) {
yylval.name = strdup(yytext); return NUMBER;
}
~?(\/?[A-z0-9\.]+)+ { yylval.name = strdup(yytext); return PATH; }