From 2151f5763dd5da431f429d7f2c8462ad85ecb9d5 Mon Sep 17 00:00:00 2001 From: Robert Pluim Date: Tue, 21 Sep 2021 17:32:20 +0200 Subject: [PATCH] Fix emoji-zwj.awk dolist * admin/unidata/emoji-zwj.awk: Fix typo, the dolist should end after the first set-char-table-range. --- admin/unidata/emoji-zwj.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/unidata/emoji-zwj.awk b/admin/unidata/emoji-zwj.awk index 1ae5d4d0396..b55379a5325 100644 --- a/admin/unidata/emoji-zwj.awk +++ b/admin/unidata/emoji-zwj.awk @@ -76,7 +76,7 @@ END { print " (nconc (char-table-range composition-function-table (car elt))" print " (list (vector (cdr elt)" print " 0" - print " 'compose-gstring-for-graphic))))" + print " 'compose-gstring-for-graphic)))))" print ";; The following three blocks are derived by hand from emoji-sequences.txt" print ";; FIXME: add support for Emoji_Keycap_Sequence once we learn how to respect FE0F/VS-16" @@ -104,7 +104,7 @@ END { print " (nconc (char-table-range composition-function-table '(#x1F3FB . #x1F3FF))" print " (list (vector \".[\\U0001F3FB-\\U0001F3FF]\"" print " 1" - print " 'compose-gstring-for-graphic)))))" + print " 'compose-gstring-for-graphic))))" print "\n" print "(provide 'emoji-zwj)" -- 2.39.5