diff options
author | Jason Rumney <jasonr@gnu.org> | 2008-04-01 14:24:26 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2008-04-01 14:24:26 +0000 |
commit | 6c52dd78f749c134590f3c09806ba63ecf7c2b9d (patch) | |
tree | 4127903de1d4b540eaffbf9b66b662bdad1bf08a /lisp/international/characters.el | |
parent | 66fb0117ad507ed023071f499822fd4b610ea700 (diff) | |
download | emacs-6c52dd78f749c134590f3c09806ba63ecf7c2b9d.tar.gz |
(script-list): Add phonetic script, covering IPA (previously Latin),
Phonetic Extensions and Phonetic Extensions Supplement (both previously
unassigned).
Diffstat (limited to 'lisp/international/characters.el')
-rw-r--r-- | lisp/international/characters.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el index aefab83c2fa..b52834317da 100644 --- a/lisp/international/characters.el +++ b/lisp/international/characters.el @@ -1040,7 +1040,9 @@ Setup char-width-table appropriate for non-CJK language environment." (dolist (elt '((#x0000 #x007F latin) - (#x00A0 #x036F latin) + (#x00A0 #x024F latin) + (#x0250 #x02AF phonetic) + (#x02B0 #x036F latin) (#x0370 #x03E1 greek) (#x03E2 #x03EF coptic) (#x03F0 #x03F3 greek) @@ -1074,6 +1076,7 @@ Setup char-width-table appropriate for non-CJK language environment." (#x16A0 #x16FF runic) (#x1780 #x17FF khmer) (#x1800 #x18AF mongolian) + (#x1D00 #x1DFF phonetic) (#x1E00 #x1EFF latin) (#x1F00 #x1FFF greek) (#x2000 #x27FF symbol) |