diff options
| author | Robert Pluim | 2021-09-21 17:32:20 +0200 |
|---|---|---|
| committer | Robert Pluim | 2021-09-21 17:37:50 +0200 |
| commit | 2151f5763dd5da431f429d7f2c8462ad85ecb9d5 (patch) | |
| tree | 7471ca4c566d688067e3cad8aebae0d26f7ee5c2 /admin | |
| parent | 98a17f30b8314e40a1edefac3d542d3e105c7bd6 (diff) | |
| download | emacs-2151f5763dd5da431f429d7f2c8462ad85ecb9d5.tar.gz emacs-2151f5763dd5da431f429d7f2c8462ad85ecb9d5.zip | |
Fix emoji-zwj.awk dolist
* admin/unidata/emoji-zwj.awk: Fix typo, the dolist should end
after the first set-char-table-range.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/unidata/emoji-zwj.awk | 4 |
1 files 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 { | |||
| 76 | print " (nconc (char-table-range composition-function-table (car elt))" | 76 | print " (nconc (char-table-range composition-function-table (car elt))" |
| 77 | print " (list (vector (cdr elt)" | 77 | print " (list (vector (cdr elt)" |
| 78 | print " 0" | 78 | print " 0" |
| 79 | print " 'compose-gstring-for-graphic))))" | 79 | print " 'compose-gstring-for-graphic)))))" |
| 80 | 80 | ||
| 81 | print ";; The following three blocks are derived by hand from emoji-sequences.txt" | 81 | print ";; The following three blocks are derived by hand from emoji-sequences.txt" |
| 82 | print ";; FIXME: add support for Emoji_Keycap_Sequence once we learn how to respect FE0F/VS-16" | 82 | print ";; FIXME: add support for Emoji_Keycap_Sequence once we learn how to respect FE0F/VS-16" |
| @@ -104,7 +104,7 @@ END { | |||
| 104 | print " (nconc (char-table-range composition-function-table '(#x1F3FB . #x1F3FF))" | 104 | print " (nconc (char-table-range composition-function-table '(#x1F3FB . #x1F3FF))" |
| 105 | print " (list (vector \".[\\U0001F3FB-\\U0001F3FF]\"" | 105 | print " (list (vector \".[\\U0001F3FB-\\U0001F3FF]\"" |
| 106 | print " 1" | 106 | print " 1" |
| 107 | print " 'compose-gstring-for-graphic)))))" | 107 | print " 'compose-gstring-for-graphic))))" |
| 108 | 108 | ||
| 109 | print "\n" | 109 | print "\n" |
| 110 | print "(provide 'emoji-zwj)" | 110 | print "(provide 'emoji-zwj)" |