define a structure for object IDs
[gitweb.git] / update_unicode.sh
index d7343b997d0cd57009733d623f3bd96052b1a7bc..27af77c7df63f8a9039d77b332ebb06d69f02f65 100755 (executable)
@@ -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
 )