]> git.eshelyaron.com Git - emacs.git/commitdiff
Add support for the Toto script (bug#58181)
authorसमीर सिंह Sameer Singh <lumarzeli30@gmail.com>
Thu, 29 Sep 2022 20:02:56 +0000 (01:32 +0530)
committerEli Zaretskii <eliz@gnu.org>
Fri, 30 Sep 2022 06:15:56 +0000 (09:15 +0300)
* lisp/language/indian.el ("Toto"): New language environment.
Add input method.
* lisp/international/fontset.el (script-representative-chars):
Support Toto.
* lisp/leim/quail/indian.el ("toto"): New input method.

* etc/NEWS: Announce the new language environment.

etc/NEWS
lisp/international/fontset.el
lisp/language/indian.el
lisp/leim/quail/indian.el

index 76e44965bae2af456b04ddd06c73d1032cae36b0..aad1a17ae71a4bc8c87dd3a8cb62d45180bcea51 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1271,6 +1271,7 @@ Meetei Mayek script and language environment
 Adlam script and language environment
 Mende Kikakui script and language environment
 Wancho script and language environment
+Toto script and language environment
 
 ---
 *** The "Oriya" language environment was renamed to "Odia".
index ec505a0903293bb123b55c0ffbd894b79e7f1bd0..aa1477e2aed1c2bf4000def1e1c0f706a1a7bb6b 100644 (file)
        (tai-xuan-jing-symbol #x1D300)
        (counting-rod-numeral #x1D360)
        (nyiakeng-puachue-hmong #x1e100)
-       (toto #x1E290)
+       (toto #x1E290 #x1E295 #x1E2AD)
        (wancho #x1E2C0 #x1E2E8 #x1E2EF)
         (nag-mundari #x1E4D0 #x1E4EB #x1E4F0)
        (mende-kikakui #x1E810 #x1E8A6)
index bc8f5328573670ec3efcee92cc1660f9738fc29b..2a1876d708f79900bdc6e7b85791b23b1fd5175e 100644 (file)
@@ -277,6 +277,16 @@ Wancho language and its script are supported in this language
 environment."))
  '("Indian"))
 
+(set-language-info-alist
+ "Toto" '((charset unicode)
+          (coding-system utf-8)
+          (coding-priority utf-8)
+          (input-method . "toto")
+          (documentation . "\
+Toto language and its script are supported in this language
+environment."))
+ '("Indian"))
+
 ;; Replace mnemonic characters in REGEXP according to TABLE.  TABLE is
 ;; an alist of (MNEMONIC-STRING . REPLACEMENT-STRING).
 
index 443488c18d9bb1db26cb11893a12a19bd1d0647e..54c46b168b33a523c250c96adb56308242d94213 100644 (file)
@@ -2211,5 +2211,42 @@ is."
  ("m"  ?𞋘)
  ("M"  ?𞋨))
 
+(quail-define-package
+ "toto" "Toto" "𞊒𞊪" nil "Toto phonetic input method."
+ nil t t t t nil nil nil nil nil t)
+
+(quail-define-rules
+ ("q"  ?𞊫)
+ ("Q"  ?𞊬)
+ ("w"  ?𞊜)
+ ("e"  ?𞊦)
+ ("E"  ?𞊧)
+ ("r"  ?𞊟)
+ ("t"  ?𞊒)
+ ("y"  ?𞊛)
+ ("u"  ?𞊥)
+ ("i"  ?𞊡)
+ ("I"  ?𞊢)
+ ("o"  ?𞊪)
+ ("p"  ?𞊐)
+ ("a"  ?𞊭)
+ ("s"  ?𞊙)
+ ("d"  ?𞊓)
+ ("f"  ?𞊮)
+ ("g"  ?𞊕)
+ ("h"  ?𞊞)
+ ("j"  ?𞊝)
+ ("k"  ?𞊔)
+ ("l"  ?𞊠)
+ ("z"  ?𞊣)
+ ("Z"  ?𞊤)
+ ("x"  ?𞊨)
+ ("X"  ?𞊩)
+ ("c"  ?𞊚)
+ ("b"  ?𞊑)
+ ("n"  ?𞊗)
+ ("N"  ?𞊘)
+ ("m"  ?𞊖))
+
 (provide 'indian)
 ;;; indian.el ends here