diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/international/characters.el | 22 | ||||
| -rw-r--r-- | lisp/international/fontset.el | 4 | ||||
| -rw-r--r-- | lisp/international/mule-cmds.el | 6 |
3 files changed, 20 insertions, 12 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el index 33cb3d85223..e48fc83c3df 100644 --- a/lisp/international/characters.el +++ b/lisp/international/characters.el | |||
| @@ -148,6 +148,7 @@ with L, LRE, or LRO Unicode bidi character type.") | |||
| 148 | (modify-category-entry '(#xF900 . #xFAFF) ?C) | 148 | (modify-category-entry '(#xF900 . #xFAFF) ?C) |
| 149 | (modify-category-entry '(#xF900 . #xFAFF) ?c) | 149 | (modify-category-entry '(#xF900 . #xFAFF) ?c) |
| 150 | (modify-category-entry '(#xF900 . #xFAFF) ?|) | 150 | (modify-category-entry '(#xF900 . #xFAFF) ?|) |
| 151 | (modify-category-entry '(#x1B170 . #x1B2FF) ?c) | ||
| 151 | (modify-category-entry '(#x20000 . #x2FFFF) ?|) | 152 | (modify-category-entry '(#x20000 . #x2FFFF) ?|) |
| 152 | (modify-category-entry '(#x20000 . #x2FFFF) ?C) | 153 | (modify-category-entry '(#x20000 . #x2FFFF) ?C) |
| 153 | (modify-category-entry '(#x20000 . #x2FFFF) ?c) | 154 | (modify-category-entry '(#x20000 . #x2FFFF) ?c) |
| @@ -221,6 +222,8 @@ with L, LRE, or LRO Unicode bidi character type.") | |||
| 221 | (modify-category-entry #x30A0 ?H) | 222 | (modify-category-entry #x30A0 ?H) |
| 222 | (modify-category-entry #x30FC ?H) | 223 | (modify-category-entry #x30FC ?H) |
| 223 | 224 | ||
| 225 | (modify-category-entry '(#x1B000 . #x1B1FF) ?j) | ||
| 226 | |||
| 224 | 227 | ||
| 225 | ;; JISX0208 | 228 | ;; JISX0208 |
| 226 | (map-charset-chars #'modify-syntax-entry 'japanese-jisx0208 "_" #x2121 #x227E) | 229 | (map-charset-chars #'modify-syntax-entry 'japanese-jisx0208 "_" #x2121 #x227E) |
| @@ -1196,10 +1199,11 @@ with L, LRE, or LRO Unicode bidi character type.") | |||
| 1196 | (#xFE30 . #xFE6F) | 1199 | (#xFE30 . #xFE6F) |
| 1197 | (#xFF01 . #xFF60) | 1200 | (#xFF01 . #xFF60) |
| 1198 | (#xFFE0 . #xFFE6) | 1201 | (#xFFE0 . #xFFE6) |
| 1199 | (#x16FE0 . #x16FE0) | 1202 | (#x16FE0 . #x16FE1) |
| 1200 | (#x17000 . #x187EC) | 1203 | (#x17000 . #x187EC) |
| 1201 | (#x18800 . #x18AF2) | 1204 | (#x18800 . #x18AF2) |
| 1202 | (#x1B000 . #x1B001) | 1205 | (#x1B000 . #x1B11E) |
| 1206 | (#x1B170 . #x1B2FB) | ||
| 1203 | (#x1F004 . #x1F004) | 1207 | (#x1F004 . #x1F004) |
| 1204 | (#x1F0CF . #x1F0CF) | 1208 | (#x1F0CF . #x1F0CF) |
| 1205 | (#x1F18E . #x1F18E) | 1209 | (#x1F18E . #x1F18E) |
| @@ -1229,15 +1233,13 @@ with L, LRE, or LRO Unicode bidi character type.") | |||
| 1229 | (#x1F6CC . #x1F6CC) | 1233 | (#x1F6CC . #x1F6CC) |
| 1230 | (#x1F6D0 . #x1F6D2) | 1234 | (#x1F6D0 . #x1F6D2) |
| 1231 | (#x1F6EB . #x1F6EC) | 1235 | (#x1F6EB . #x1F6EC) |
| 1232 | (#x1F6F4 . #x1F6F6) | 1236 | (#x1F6F4 . #x1F6F8) |
| 1233 | (#x1F910 . #x1F91E) | 1237 | (#x1F910 . #x1F93E) |
| 1234 | (#x1F920 . #x1F927) | 1238 | (#x1F940 . #x1F94C) |
| 1235 | (#x1F930 . #x1F930) | 1239 | (#x1F950 . #x1F96B) |
| 1236 | (#x1F933 . #x1F93E) | 1240 | (#x1F980 . #x1F997) |
| 1237 | (#x1F940 . #x1F94B) | ||
| 1238 | (#x1F950 . #x1F95E) | ||
| 1239 | (#x1F980 . #x1F991) | ||
| 1240 | (#x1F9C0 . #x1F9C0) | 1241 | (#x1F9C0 . #x1F9C0) |
| 1242 | (#x1F9D0 . #x1F9E6) | ||
| 1241 | (#x20000 . #x2FFFF) | 1243 | (#x20000 . #x2FFFF) |
| 1242 | (#x30000 . #x3FFFF)))) | 1244 | (#x30000 . #x3FFFF)))) |
| 1243 | (dolist (elt l) | 1245 | (dolist (elt l) |
diff --git a/lisp/international/fontset.el b/lisp/international/fontset.el index e023d253693..8a1a9cfc58b 100644 --- a/lisp/international/fontset.el +++ b/lisp/international/fontset.el | |||
| @@ -227,9 +227,12 @@ | |||
| 227 | (modi #x11600) | 227 | (modi #x11600) |
| 228 | (takri #x11680) | 228 | (takri #x11680) |
| 229 | (warang-citi #x118A1) | 229 | (warang-citi #x118A1) |
| 230 | (zanabazar-square #x11A00) | ||
| 231 | (soyombo #x11A50) | ||
| 230 | (pau-cin-hau #x11AC0) | 232 | (pau-cin-hau #x11AC0) |
| 231 | (bhaiksuki #x11C00) | 233 | (bhaiksuki #x11C00) |
| 232 | (marchen #x11C72) | 234 | (marchen #x11C72) |
| 235 | (masaram-gondi #x11D00) | ||
| 233 | (cuneiform #x12000) | 236 | (cuneiform #x12000) |
| 234 | (cuneiform-numbers-and-punctuation #x12400) | 237 | (cuneiform-numbers-and-punctuation #x12400) |
| 235 | (mro #x16A40) | 238 | (mro #x16A40) |
| @@ -237,6 +240,7 @@ | |||
| 237 | (pahawh-hmong #x16B11) | 240 | (pahawh-hmong #x16B11) |
| 238 | (tangut #x17000) | 241 | (tangut #x17000) |
| 239 | (tangut-components #x18800) | 242 | (tangut-components #x18800) |
| 243 | (nushu #x1B170) | ||
| 240 | (duployan-shorthand #x1BC20) | 244 | (duployan-shorthand #x1BC20) |
| 241 | (byzantine-musical-symbol #x1D000) | 245 | (byzantine-musical-symbol #x1D000) |
| 242 | (musical-symbol #x1D100) | 246 | (musical-symbol #x1D100) |
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index bdba8eeb112..bcbc92844d6 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -2945,8 +2945,10 @@ on encoding." | |||
| 2945 | ;; (#x17000 . #x187FF) Tangut Ideographs | 2945 | ;; (#x17000 . #x187FF) Tangut Ideographs |
| 2946 | ;; (#x18800 . #x18AFF) Tangut Components | 2946 | ;; (#x18800 . #x18AFF) Tangut Components |
| 2947 | ;; (#x18B00 . #x1AFFF) unused | 2947 | ;; (#x18B00 . #x1AFFF) unused |
| 2948 | (#x1B000 . #x1B0FF) | 2948 | (#x1B000 . #x1B12F) |
| 2949 | ;; (#x1B100 . #x1BBFF) unused | 2949 | ;; (#x1B130 . #x1B16F) unused |
| 2950 | (#x1B170 . #x1B2FF) | ||
| 2951 | ;; (#x1B300 . #x1BBFF) unused | ||
| 2950 | (#x1BC00 . #x1BCAF) | 2952 | (#x1BC00 . #x1BCAF) |
| 2951 | ;; (#x1BCB0 . #x1CFFF) unused | 2953 | ;; (#x1BCB0 . #x1CFFF) unused |
| 2952 | (#x1D000 . #x1FFFF) | 2954 | (#x1D000 . #x1FFFF) |