- Allow semicolons at the end of method declarations (this is for method implementations; the semicolon is required for interface declarations).
* Scripts/prepare-ChangeLog:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@10435
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-09-01 Tim Omernick <tomernick@apple.com>
+
+ Change made by Darin, reviewed by John and myself.
+
+ - Allow semicolons at the end of method declarations (this is for method implementations; the semicolon is required for interface declarations).
+
+ * Scripts/prepare-ChangeLog:
+
2005-08-31 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin.
# start of method declaration
- if ((my $method_char, my $method_spec) = m&^([-+])([^0-9;][^;]*)$&)
+ if ((my $method_char, my $method_spec) = m&^([-+])([^0-9;][^;]*);?$&)
{
my $original = $_;