2008-02-10 Jim Meyering <meyering@redhat.com>
+ * build-aux/gitlog-to-changelog: Use committer date, not author date.
+
xstrtol_error: Fix typo.
* lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
s/exit_failure/exit_status/.
#!/usr/bin/perl
# Convert git log output to ChangeLog format.
-my $VERSION = '2008-02-09 13:52'; # UTC
+my $VERSION = '2008-02-10 10:03'; # UTC
# The definition above must lie within the first 8 lines in order
# for the Emacs time-stamp write hook (at end) to update it.
# If you change this file with Emacs, please let the write hook
and (warn "$ME: too many arguments\n"), usage 1;
my @cmd = (qw (git log --log-size), "--since=$since_date",
- '--pretty=format:%at %an <%ae>%n%n%s%n%b%n');
+ '--pretty=format:%ct %an <%ae>%n%n%s%n%b%n');
open PIPE, '-|', @cmd
or die "$ME: failed to run `". quoted_cmd (@cmd) ."': $!\n";