update AUTHORS, and don't go on the slippery slope of using implicit typing

This commit is contained in:
Hylke Bons 2011-05-05 00:07:02 +01:00
parent 2e638b9b02
commit daad99c38b
2 changed files with 4 additions and 3 deletions

View file

@ -18,6 +18,7 @@ Contributors:
Andreas Nilsson <andreasn@gnome.org>
Benjamin Podszun <benjamin.podszun@gmail.com>
Bertrand Lorentz <bertrand.lorentz@gmail.com>
Gabriel Burt <gabriel.burt@gmail.com>
Garrett LeSage <garrett@novell.com>
Hylke Bons <hylkebons@gmail.com>
Jakub Steiner <jimmac@redhat.com>
@ -37,5 +38,5 @@ Contributors:
Vincent Untz <vuntz@gnome.org>
Will Thompson <will@willthompson.co.uk>
Thanks very much!
Thanks very much!

View file

@ -916,14 +916,14 @@ namespace SparkleLib {
entries.Add (last_entry);
var merge_regex = new Regex (@"commit ([a-z0-9]{40})\n" +
Regex merge_regex = new Regex (@"commit ([a-z0-9]{40})\n" +
"Merge: .+ .+\n" +
"Author: (.+) <(.+)>\n" +
"Date: ([0-9]{4})-([0-9]{2})-([0-9]{2}) " +
"([0-9]{2}):([0-9]{2}):([0-9]{2}) .([0-9]{4})\n" +
"*", RegexOptions.Compiled);
var non_merge_regex = new Regex (@"commit ([a-z0-9]{40})\n" +
Regex non_merge_regex = new Regex (@"commit ([a-z0-9]{40})\n" +
"Author: (.+) <(.+)>\n" +
"Date: ([0-9]{4})-([0-9]{2})-([0-9]{2}) " +
"([0-9]{2}):([0-9]{2}):([0-9]{2}) .([0-9]{4})\n" +