2007-01-09 Bart Deleye <bart.deleye@gmail.com>

* parser/gapi_pp.pl : regex fix for tinymail parse.

svn path=/trunk/gtk-sharp/; revision=70734
This commit is contained in:
Mike Kestner 2007-01-09 19:47:28 +00:00
parent 8ac2a30048
commit 8214e5ccd4
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,8 @@
2006-01-09 Brad Taylor <brad@getcoded.net>
2007-01-09 Bart Deleye <bart.deleye@gmail.com>
* parser/gapi_pp.pl : regex fix for tinymail parse.
2007-01-09 Brad Taylor <brad@getcoded.net>
* gdk/Pixbuf.custom: Properly dispose of PixbufLoaders when we're done
with them.

View File

@ -82,7 +82,7 @@ foreach $fname (@hdrs) {
} elsif ($line =~ /^extern/) {
while ($line !~ /;/) {$line = <INFILE>;}
} elsif ($line =~ /^#ifndef\s+\w+_H_*\b/) {
while ($line !~ /#define/) {$line = <INFILE>;}
while ($line !~ /#define|#endif/) {$line = <INFILE>;}
} elsif ($line =~ /$private_regex/) {
$nested = 0;
while ($line = <INFILE>) {