Re: Strange date format in git-send-email
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:42:32
Jakub Narebski [off-list ref] writes:
There were two patches on the list: one hacky adding setlocale call (not applied), second implementing rfc-822 date in Perl. Should be in current.
What do you mean by "should be in current"?
I specifically asked you about this issue a few days ago, even
with a patch to test out for people who are having problems, but
haven't heard back anything yet. The issue is still on hold and
not in "current" as far as I am concerned.
To: Jakub Narebski [off-list ref]
Cc: git@vger.kernel.org, Eric Wong [off-list ref]
From: Junio C Hamano [off-list ref]
Subject: Re: [PATCH] send-email: Use setlocale in addition to
$ENV{LC_ALL} to set locale
Date: Sun, 02 Jul 2006 19:49:50 -0700
Message-ID: [off-list ref]
I was reviewing old log and noticed this topic has never been
resolved. Your proposal was to use POSIX::setlocale(), and
Eric's counter-proposal was to mimic what 822-date script does,
doing it by hand without mucking with locales, and the
discussion seemed to have died there. Does this still need to
be addressed?
My gut feeling is that it would probably be less problematic if
we do not muck with locales at all (so drop POSIX::strftime as
well).
So maybe something like this (totally untested)?
...