2007-07-20 Mike Kestner <mkestner@novell.com>

* gtk/gtk-api-2.10.raw : refresh.
	* parser/gapi_pp.pl : combine lines that end in '\' before sending
	them through the pattern matching.  [Fixes #79214]

svn path=/trunk/gtk-sharp/; revision=82359
This commit is contained in:
Mike Kestner 2007-07-20 15:32:38 +00:00
parent ca809d5b2c
commit cdf0658754
3 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2007-07-20 Mike Kestner <mkestner@novell.com>
* gtk/gtk-api-2.10.raw : refresh.
* parser/gapi_pp.pl : combine lines that end in '\' before sending
them through the pattern matching. [Fixes #79214]
2007-07-19 Mike Kestner <mkestner@novell.com>
* generator/OpaqueGen.cs : override the new Copy vm if a Copy method

View File

@ -22622,6 +22622,7 @@
<static-string cname="GTK_STOCK_COPY" name="Copy" value="gtk-copy" />
<static-string cname="GTK_STOCK_CUT" name="Cut" value="gtk-cut" />
<static-string cname="GTK_STOCK_DELETE" name="Delete" value="gtk-delete" />
<static-string cname="GTK_STOCK_DIALOG_AUTHENTICATION" name="DialogAuthentication" value="gtk-dialog-authentication" />
<static-string cname="GTK_STOCK_DIALOG_ERROR" name="DialogError" value="gtk-dialog-error" />
<static-string cname="GTK_STOCK_DIALOG_INFO" name="DialogInfo" value="gtk-dialog-info" />
<static-string cname="GTK_STOCK_DIALOG_QUESTION" name="DialogQuestion" value="gtk-dialog-question" />

View File

@ -66,6 +66,8 @@ foreach $fname (@hdrs) {
$line = $prepend . $line;
$prepend = "";
while ($line =~ /(.*)\\$/) { $line = $1 . <INFILE>; }
if ($line =~ /#\s*define\s+\w+\s+\"/) {
$def = $line;
while ($def !~ /\".*\"/) {$def .= ($line = <INFILE>);}