]> git.ipfire.org Git - thirdparty/git.git/blobdiff - git-send-email.perl
Have a command that specifically invokes 'p4' (via system)
[thirdparty/git.git] / git-send-email.perl
index 6adb66947279e290d90be7da154f49e696894528..d2fd89907688a044ffe0d2520744e00a9b33c942 100755 (executable)
@@ -38,7 +38,7 @@ package main;
 
 sub usage {
        print <<EOT;
-git-send-email [options] <file | directory>...
+git send-email [options] <file | directory>...
 Options:
    --from         Specify the "From:" line of the email to be sent.
 
@@ -882,7 +882,7 @@ foreach my $t (@files) {
                                }
                                elsif (/^Content-type:/i) {
                                        $has_content_type = 1;
-                                       if (/charset="?[^ "]+/) {
+                                       if (/charset="?([^ "]+)/) {
                                                $body_encoding = $1;
                                        }
                                        push @xh, $_;