]> granicus.if.org Git - git/commitdiff
Git.pm: add comment pointing to t9000
authorMatthieu Moy <Matthieu.Moy@imag.fr>
Fri, 21 Oct 2016 09:20:24 +0000 (11:20 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 21 Oct 2016 16:48:26 +0000 (09:48 -0700)
parse_mailboxes should probably eventually be completely equivalent to
Mail::Address, and if this happens we can drop the Mail::Address
dependency. Add a comment in the code reminding the current state of the
code, and point to the corresponding failing test to help future
contributors to get it right.

Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
perl/Git.pm

index 42e0895ef7276b634fb86a0a12caa54655bb387f..8bb2b7c7e355d152ebfeac9c1f8fddf846afebcd 100644 (file)
@@ -870,6 +870,8 @@ Return an array of mailboxes extracted from a string.
 
 =cut
 
+# Very close to Mail::Address's parser, but we still have minor
+# differences in some cases (see t9000 for examples).
 sub parse_mailboxes {
        my $re_comment = qr/\((?:[^)]*)\)/;
        my $re_quote = qr/"(?:[^\"\\]|\\.)*"/;