chiark / gitweb /
el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax.
[profile] / bin / git-copyright-dates
index 5eec713757acbafd7eb5733848b420e95e5a73ea..180e7bad1f5a9a3ecf7d41735e98b78112295629 100755 (executable)
@@ -2,7 +2,7 @@
 
 my (%Y, %M);
 open my $fh, "-|", "git", "log",
-  "--date=format:%Y", "--pretty=format:%ad %aN"
+  "--date=format:%Y", "--pretty=format:%ad %aN", @ARGV
   or die "git log: $!";
 while (<$fh>) {
   /(\d+)\s+(.*)$/ or die "wtf?  $_";