Skip to content

Commit

Permalink
update_unicode.sh: delete the command group
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
bbolli authored and gitster committed Dec 22, 2014
1 parent 1679acd commit 32c239d
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions update_unicode.sh
Expand Up @@ -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
)

0 comments on commit 32c239d

Please sign in to comment.