1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

Fix blocks.awk wrt to Emoji characters

* admin/unidata/blocks.awk: Fix emoji-data.txt processing for
older Awks.
This commit is contained in:
Eli Zaretskii 2021-09-19 21:33:02 +03:00
parent 788a65862e
commit 7e0af65d78

View File

@ -204,7 +204,7 @@ FILENAME ~ "Blocks.txt" && /^[0-9A-F]/ {
# The space after 'Emoji' is significant in the next two rules.
# This purposely and deliberately excludes codepoints <= 00FF
FILENAME ~ "emoji-data.txt" && /^00[0-9A-F]{2}.*; Emoji / {
FILENAME ~ "emoji-data.txt" && /^00[0-9A-F][0-9A-F].*; Emoji / {
next
}
FILENAME ~ "emoji-data.txt" && /^[0-9A-F].*; Emoji / {