diff options
| author | Paul Eggert | 2015-04-11 13:04:37 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-04-11 13:05:18 -0700 |
| commit | fc530e56cf17494be840933fd56534be42fbac45 (patch) | |
| tree | da689cdc21368ed5de3c3a95ff7e1a739d417832 /build-aux/git-hooks/commit-msg | |
| parent | fadf0205ef3e8adfd4ca72e9d1b2f2ab30005bd5 (diff) | |
| download | emacs-fc530e56cf17494be840933fd56534be42fbac45.tar.gz emacs-fc530e56cf17494be840933fd56534be42fbac45.zip | |
Port commit-msg to MSYS Bash+Gawk
See Eli Zaretskii in:
http://lists.gnu.org/archive/html/emacs-devel/2015-04/msg00610.html
* build-aux/git-hooks/commit-msg (cent_sign_utf8_format)
(cent_sign, print_at_sign, at_sign): Revert previous change.
(print_at_sign): Prepend "BEGIN".
(at_sign): Redirect from /dev/null to be safer with pre-POSIX awk.
Diffstat (limited to 'build-aux/git-hooks/commit-msg')
| -rwxr-xr-x | build-aux/git-hooks/commit-msg | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/build-aux/git-hooks/commit-msg b/build-aux/git-hooks/commit-msg index 3fc6e19e1dd..6e31dbcbdbe 100755 --- a/build-aux/git-hooks/commit-msg +++ b/build-aux/git-hooks/commit-msg | |||
| @@ -29,11 +29,12 @@ fi | |||
| 29 | 29 | ||
| 30 | # Use a UTF-8 locale if available, so that the UTF-8 check works. | 30 | # Use a UTF-8 locale if available, so that the UTF-8 check works. |
| 31 | # Use U+00A2 CENT SIGN to test whether the locale works. | 31 | # Use U+00A2 CENT SIGN to test whether the locale works. |
| 32 | cent_sign='ยข' | 32 | cent_sign_utf8_format='\302\242\n' |
| 33 | print_at_sign='{print substr("'$cent_sign'@", 2)}' | 33 | cent_sign=`printf "$cent_sign_utf8_format"` |
| 34 | at_sign=`$awk "$print_at_sign" 2>/dev/null` | 34 | print_at_sign='BEGIN {print substr("'$cent_sign'@", 2)}' |
| 35 | at_sign=`$awk "$print_at_sign" </dev/null 2>/dev/null` | ||
| 35 | if test "$at_sign" != @; then | 36 | if test "$at_sign" != @; then |
| 36 | at_sign=`LC_ALL=en_US.UTF-8 $awk "$print_at_sign" 2>/dev/null` | 37 | at_sign=`LC_ALL=en_US.UTF-8 $awk "$print_at_sign" </dev/null 2>/dev/null` |
| 37 | if test "$at_sign" = @; then | 38 | if test "$at_sign" = @; then |
| 38 | LC_ALL=en_US.UTF-8; export LC_ALL | 39 | LC_ALL=en_US.UTF-8; export LC_ALL |
| 39 | fi | 40 | fi |