summaryrefslogtreecommitdiff
path: root/check-THANKS.pl
diff options
context:
space:
mode:
authorMartin Wehner <martin.wehner@gmail.com>2005-03-07 09:11:31 +0000
committerMartin Wehner <mwehner@src.gnome.org>2005-03-07 09:11:31 +0000
commitbb10b8fbd1618dc76df53e1b16b764811dc0236c (patch)
tree988569a53532803ab5e22bb564eeea49ffd0d64c /check-THANKS.pl
parenta92cab4810defaecbdbe0a6839fd0437a07a00c6 (diff)
downloadnautilus-bb10b8fbd1618dc76df53e1b16b764811dc0236c.tar.gz
Update for releaseNAUTILUS_2_10_0
2005-03-07 Martin Wehner <martin.wehner@gmail.com> * THANKS: Update for release * check-THANKS.pl: Extract names from ChangeLog bodies too. (#43452) Patch from Richard Hoelscher <rah@rahga.com>
Diffstat (limited to 'check-THANKS.pl')
-rwxr-xr-xcheck-THANKS.pl7
1 files changed, 5 insertions, 2 deletions
diff --git a/check-THANKS.pl b/check-THANKS.pl
index 8e0893e4b..2eb1b9696 100755
--- a/check-THANKS.pl
+++ b/check-THANKS.pl
@@ -126,10 +126,13 @@ while (<CHANGELOGS>)
# Old style ChangeLog comment
s/^.*20\d\d\s*//;
}
+ elsif (/^\s+Patch from.+<\S+\@\S+>/i)
+ {
+ # Body of comment says 'Patch from', followed by name and email.
+ s/^\s+Patch from:?\s+//i;
+ }
else
{
- # FIXME bugzilla.gnome.org 43452: we should also try to extract
- # names & addresses from entry body text.
next; # ignore unknown lines for now
}