mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:35:33 +00:00
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:
parent
8ac2a30048
commit
8214e5ccd4
|
@ -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.
|
||||
|
|
|
@ -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>) {
|
||||
|
|
Loading…
Reference in a new issue