From 1679acdbff6443e07cd880048598d8de45663370 Mon Sep 17 00:00:00 2001 From: Beat Bolli Date: Fri, 19 Dec 2014 17:24:23 +0100 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- update_unicode.sh | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/update_unicode.sh b/update_unicode.sh index f5cc14b338..d7343b997d 100755 --- a/update_unicode.sh +++ b/update_unicode.sh @@ -28,12 +28,14 @@ fi && make ) && { UNICODE_DIR=. && export UNICODE_DIR && - echo "static const struct interval zero_width[] = {" && - uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD | - grep -v plane && - echo "};" && - echo "static const struct interval double_width[] = {" && - uniset/uniset --32 eaw:F,W && - echo "};" + 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 ) -- 2.11.4.GIT