From 8214e5ccd4f68d3ed20898233113389db712a82b Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Tue, 9 Jan 2007 19:47:28 +0000 Subject: [PATCH] 2007-01-09 Bart Deleye * parser/gapi_pp.pl : regex fix for tinymail parse. svn path=/trunk/gtk-sharp/; revision=70734 --- ChangeLog | 6 +++++- parser/gapi_pp.pl | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 04ca7f8c9..770b8a672 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -2006-01-09 Brad Taylor +2007-01-09 Bart Deleye + + * parser/gapi_pp.pl : regex fix for tinymail parse. + +2007-01-09 Brad Taylor * gdk/Pixbuf.custom: Properly dispose of PixbufLoaders when we're done with them. diff --git a/parser/gapi_pp.pl b/parser/gapi_pp.pl index fcfe0acf4..f25e712e2 100755 --- a/parser/gapi_pp.pl +++ b/parser/gapi_pp.pl @@ -82,7 +82,7 @@ foreach $fname (@hdrs) { } elsif ($line =~ /^extern/) { while ($line !~ /;/) {$line = ;} } elsif ($line =~ /^#ifndef\s+\w+_H_*\b/) { - while ($line !~ /#define/) {$line = ;} + while ($line !~ /#define|#endif/) {$line = ;} } elsif ($line =~ /$private_regex/) { $nested = 0; while ($line = ) {