Git fork

update_unicode.sh: delete the command group

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>

authored by

Beat Bolli and committed by
Junio C Hamano
32c239d1 1679acdb

+11 -12
+11 -12
update_unicode.sh
··· 26 26 ./configure --enable-warnings=-Werror CFLAGS='-O0 -ggdb' 27 27 fi && 28 28 make 29 - ) && { 30 - UNICODE_DIR=. && export UNICODE_DIR && 31 - cat <<-EOF 32 - static const struct interval zero_width[] = { 33 - $(uniset/uniset --32 cat:Me,Mn,Cf \ 34 - + U+1160..U+11FF - U+00AD | grep -v plane) 35 - }; 36 - static const struct interval double_width[] = { 37 - $(uniset/uniset --32 eaw:F,W) 38 - }; 39 - EOF 40 - } >$UNICODEWIDTH_H 29 + ) && 30 + UNICODE_DIR=. && export UNICODE_DIR && 31 + cat >$UNICODEWIDTH_H <<-EOF 32 + static const struct interval zero_width[] = { 33 + $(uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD | 34 + grep -v plane) 35 + }; 36 + static const struct interval double_width[] = { 37 + $(uniset/uniset --32 eaw:F,W) 38 + }; 39 + EOF 41 40 )