On Thu, 6 Sep 2001, Stas Bekman wrote:
 
> OK, can somebody test this patch? the latest httpd source fails to get
> parsed for me (via 'make source_scan'), so I cannot verify my patch.

whats the error?

> +        (my $old = $old_content) =~ s/\w{3} \w{3} \d+ \d+:\d+:\d+ \d{4}//;
> +        (my $new = $new_content) =~ s/\w{3} \w{3} \d+ \d+:\d+:\d+ \d{4}//;

doesn't work, but this does:
        my $table_header = qr{^\#\s!.*};
        (my $old = $old_content) =~ s/$table_header//mg;
        (my $new = $new_content) =~ s/$table_header//mg;

i would rather rip out the entire header anyhow, since $VERSION might
change, we might add other stuff, etc.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to