format-patch: run diff in C locale
Otherwise it would show incomplete line and binary markers in a locale dependent way. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
a004d3f70f
commit
830273d10c
@ -5,6 +5,10 @@
|
|||||||
|
|
||||||
. git-sh-setup
|
. git-sh-setup
|
||||||
|
|
||||||
|
# Force diff to run in C locale.
|
||||||
|
LANG=C LC_ALL=C
|
||||||
|
export LANG LC_ALL
|
||||||
|
|
||||||
usage () {
|
usage () {
|
||||||
echo >&2 "usage: $0"' [-n] [-o dir | --stdout] [--keep-subject] [--mbox]
|
echo >&2 "usage: $0"' [-n] [-o dir | --stdout] [--keep-subject] [--mbox]
|
||||||
[--check] [--signoff] [-<diff options>...]
|
[--check] [--signoff] [-<diff options>...]
|
||||||
@ -202,7 +206,7 @@ process_one () {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
eval "$(LANG=C LC_ALL=C sed -ne "$whosepatchScript" $commsg)"
|
eval "$(sed -ne "$whosepatchScript" $commsg)"
|
||||||
test "$author,$au" = ",$me" || {
|
test "$author,$au" = ",$me" || {
|
||||||
mailScript="$mailScript"'
|
mailScript="$mailScript"'
|
||||||
a\
|
a\
|
||||||
|
Loading…
Reference in New Issue
Block a user