update_unicode.sh: make the output structure visible

By using a here document instead of the echo/uniset sequence, the
final structure of the generated file becomes obvious.

Signed-off-by: Beat Bolli <dev+git@drbeat.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Beat Bolli 2014-12-19 17:24:23 +01:00 committed by Junio C Hamano
parent 3a77c2096d
commit 1679acdbff

View File

@ -28,12 +28,14 @@ fi &&
make make
) && { ) && {
UNICODE_DIR=. && export UNICODE_DIR && UNICODE_DIR=. && export UNICODE_DIR &&
echo "static const struct interval zero_width[] = {" && cat <<-EOF
uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD | static const struct interval zero_width[] = {
grep -v plane && $(uniset/uniset --32 cat:Me,Mn,Cf \
echo "};" && + U+1160..U+11FF - U+00AD | grep -v plane)
echo "static const struct interval double_width[] = {" && };
uniset/uniset --32 eaw:F,W && static const struct interval double_width[] = {
echo "};" $(uniset/uniset --32 eaw:F,W)
};
EOF
} >$UNICODEWIDTH_H } >$UNICODEWIDTH_H
) )