diff options
author | समीर सिंह Sameer Singh <lumarzeli30@gmail.com> | 2022-09-27 16:44:28 +0530 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-09-28 15:40:16 +0300 |
commit | 2286fbceaba49473e94011d2c37549f38304497a (patch) | |
tree | fff4dc602393a098eb6bb7cd85937921371ff7b9 /lisp/leim | |
parent | db74fd0a4dba7a7e7abff50501eb6f0961f2e4d6 (diff) | |
download | emacs-2286fbceaba49473e94011d2c37549f38304497a.tar.gz emacs-2286fbceaba49473e94011d2c37549f38304497a.tar.bz2 emacs-2286fbceaba49473e94011d2c37549f38304497a.zip |
Add support for the Adlam script (bug#58111)
* lisp/language/misc-lang.el ("Adlam"): New language environment.
Add composition rules for Adlam. Add sample text and input method.
* lisp/international/fontset.el (script-representative-chars):
Support Adlam.
* lisp/leim/quail/misc-lang.el ("adlam"): New input method.
* etc/HELLO: Add Adlam greeting.
* etc/NEWS: Announce the new language environment.
Diffstat (limited to 'lisp/leim')
-rw-r--r-- | lisp/leim/quail/misc-lang.el | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/lisp/leim/quail/misc-lang.el b/lisp/leim/quail/misc-lang.el index 0c4a0d4ce40..6bafa6b5fb3 100644 --- a/lisp/leim/quail/misc-lang.el +++ b/lisp/leim/quail/misc-lang.el @@ -1180,5 +1180,102 @@ (".||" ?𐩗) (".=" ?𐩘)) +(quail-define-package + "adlam" "Adlam" "𞤀" t "Adlam input method. + + `\\=`' is used to switch levels instead of Alt-Gr. +" nil t t t t nil nil nil nil nil t) + +(quail-define-rules + ("1" ?𞥑) + ("`!" ?𞥞) + ("2" ?𞥒) + ("3" ?𞥓) + ("4" ?𞥔) + ("5" ?𞥕) + ("6" ?𞥖) + ("7" ?𞥗) + ("8" ?𞥘) + ("9" ?𞥙) + ("0" ?𞥐) + ("q" ?𞤹) + ("Q" ?𞤗) + ("`q" ?𞥆) + ("w" ?𞤱) + ("W" ?𞤏) + ("`w" ?𞥈) + ("`W" ?𞥉) + ("e" ?𞤫) + ("E" ?𞤉) + ("`e" ?𞥅) + ("r" ?𞤪) + ("R" ?𞤈) + ("t" ?𞤼) + ("T" ?𞤚) + ("y" ?𞤴) + ("Y" ?𞤒) + ("`y" ?𞤰) + ("`Y" ?𞤎) + ("u" ?𞤵) + ("U" ?𞤓) + ("i" ?𞤭) + ("I" ?𞤋) + ("o" ?𞤮) + ("O" ?𞤌) + ("p" ?𞤨) + ("P" ?𞤆) + ("a" ?𞤢) + ("A" ?𞤀) + ("`a" ?𞥄) + ("s" ?𞤧) + ("S" ?𞤅) + ("`s" ?𞥃) + ("`S" ?𞤡) + ("d" ?𞤣) + ("D" ?𞤁) + ("`d" ?𞤯) + ("`D" ?𞤍) + ("f" ?𞤬) + ("F" ?𞤊) + ("g" ?𞤺) + ("G" ?𞤘) + ("`g" ?𞥀) + ("`G" ?𞤞) + ("h" ?𞤸) + ("H" ?𞤖) + ("`h" ?𞥇) + ("j" ?𞤶) + ("J" ?𞤔) + ("k" ?𞤳) + ("K" ?𞤑) + ("`k" ?𞤿) + ("`K" ?𞤝) + ("l" ?𞤤) + ("L" ?𞤂) + ("z" ?𞥁) + ("Z" ?𞤟) + ("`z" ?𞥂) + ("`Z" ?𞤠) + ("x" ?𞤽) + ("X" ?𞤛) + ("c" ?𞤷) + ("C" ?𞤕) + ("`c" #x200C) ; ZWNJ + ("v" ?𞤾) + ("V" ?𞤜) + ("`v" ?𞥊) + ("b" ?𞤦) + ("B" ?𞤄) + ("`b" ?𞤩) + ("`B" ?𞤇) + ("n" ?𞤲) + ("N" ?𞤐) + ("`n" ?𞤻) + ("`N" ?𞤙) + ("m" ?𞤥) + ("M" ?𞤃) + ("`m" ?𞥋) + ("`/" ?𞥟)) + (provide 'misc-lang) ;;; misc-lang.el ends here |