diff options
author | Beat Bolli <dev+git@drbeat.li> | 2014-12-19 17:24:24 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-12-22 10:03:37 -0800 |
commit | 32c239d1fb23d47aa95cc8a47f99dc25f152021d (patch) | |
tree | 7c3a5d9fb5188a852e3cce4688d65821271ff2ec /update_unicode.sh | |
parent | 1679acdbff6443e07cd880048598d8de45663370 (diff) | |
download | git-32c239d1fb23d47aa95cc8a47f99dc25f152021d.tar.gz |
update_unicode.sh: delete the command groupbb/update-unicode-table
Now that the whole file is generated by one single command, the
command group is no longer needed.
Signed-off-by: Beat Bolli <dev+git@drbeat.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'update_unicode.sh')
-rwxr-xr-x | update_unicode.sh | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/update_unicode.sh b/update_unicode.sh index d7343b997d..27af77c7df 100755 --- a/update_unicode.sh +++ b/update_unicode.sh @@ -26,16 +26,15 @@ fi && ./configure --enable-warnings=-Werror CFLAGS='-O0 -ggdb' fi && make - ) && { - UNICODE_DIR=. && export UNICODE_DIR && - cat <<-EOF - static const struct interval zero_width[] = { - $(uniset/uniset --32 cat:Me,Mn,Cf \ - + U+1160..U+11FF - U+00AD | grep -v plane) - }; - static const struct interval double_width[] = { - $(uniset/uniset --32 eaw:F,W) - }; - EOF - } >$UNICODEWIDTH_H + ) && + UNICODE_DIR=. && export UNICODE_DIR && + cat >$UNICODEWIDTH_H <<-EOF + static const struct interval zero_width[] = { + $(uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD | + grep -v plane) + }; + static const struct interval double_width[] = { + $(uniset/uniset --32 eaw:F,W) + }; + EOF ) |