зеркало из https://github.com/microsoft/git.git
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:
Родитель
3a77c2096d
Коммит
1679acdbff
|
@ -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
|
||||
)
|
||||
|
|
Загрузка…
Ссылка в новой задаче