mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-11-25 17:59:54 +08:00
patch #856724/857342 and odds and ends.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
Mon Feb 9 14:53:19 EST 2004 Brian Bruns <brian@bruns.com>
|
||||
|
||||
* src/util/mdb-export.c: reorganized a bit, added header text and options from patch #857342
|
||||
* src/util/mdb-export.c: added -I option from patch #857342
|
||||
* src/gmdb2/gladefiles/gmdb-schema.glade: fix close button
|
||||
* src/sql/lexer.l: allow negative numbers
|
||||
|
||||
Sun Feb 8 13:02:56 EST 2004 Brian Bruns <brian@bruns.com>
|
||||
|
||||
* doc/faq.html: update email addy
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
config.h.in
|
||||
config.h
|
||||
config.h.in
|
||||
stamp-h1
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user