From: Beat Bolli Date: Fri, 19 Dec 2014 16:24:24 +0000 (+0100) Subject: update_unicode.sh: delete the command group X-Git-Tag: v2.3.0-rc0~16^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=32c239d1fb23d47aa95cc8a47f99dc25f152021d;p=git-core%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/update_unicode.sh b/update_unicode.sh index d7343b997..27af77c7d 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 )