diff options
author | समीर सिंह Sameer Singh <lumarzeli30@gmail.com> | 2022-10-06 17:34:28 +0530 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-10-08 10:46:48 +0300 |
commit | 75b7aacbf608ab49991aa945c5a4e54774084294 (patch) | |
tree | 6457c88c5ed1d771ab7bb51e508c39c8995eebd3 /lisp/leim | |
parent | 31919508392dd2a6749588b2b8ffe376a4a4444d (diff) | |
download | emacs-75b7aacbf608ab49991aa945c5a4e54774084294.tar.gz emacs-75b7aacbf608ab49991aa945c5a4e54774084294.tar.bz2 emacs-75b7aacbf608ab49991aa945c5a4e54774084294.zip |
Add support for the Coptic script (bug#58330)
* lisp/language/misc-lang.el ("Coptic"): New language environment.
Add sample text and input method.
* lisp/international/fontset.el (script-representative-chars)
(setup-default-fontset): Support coptic.
* lisp/leim/quail/misc-lang.el ("coptic"): New input method.
* etc/HELLO: Add a Coptic greeting.
* etc/NEWS: Announce the new language environment.
Diffstat (limited to 'lisp/leim')
-rw-r--r-- | lisp/leim/quail/misc-lang.el | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/lisp/leim/quail/misc-lang.el b/lisp/leim/quail/misc-lang.el index dad5cfc3e3a..73287ee7842 100644 --- a/lisp/leim/quail/misc-lang.el +++ b/lisp/leim/quail/misc-lang.el @@ -1558,5 +1558,122 @@ ("n" ?𐌽) ("m" ?𐌼)) +(quail-define-package + "coptic" "Coptic" "Ⲁ" nil "Coptic 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" ?𐋡) + ("`1" ?1) + ("`!" ?𐋠) + ("2" ?𐋢) + ("`2" ?2) + ("3" ?𐋣) + ("`3" ?3) + ("4" ?𐋤) + ("`4" ?4) + ("5" ?𐋥) + ("`5" ?5) + ("6" ?𐋦) + ("`6" ?6) + ("7" ?𐋧) + ("`7" ?7) + ("8" ?𐋨) + ("`8" ?8) + ("9" ?𐋩) + ("`9" ?9) + ("10" ?𐋪) + ("20" ?𐋫) + ("30" ?𐋬) + ("40" ?𐋭) + ("50" ?𐋮) + ("60" ?𐋯) + ("70" ?𐋰) + ("80" ?𐋱) + ("90" ?𐋲) + ("100" ?𐋳) + ("200" ?𐋴) + ("300" ?𐋵) + ("400" ?𐋶) + ("500" ?𐋷) + ("600" ?𐋸) + ("700" ?𐋹) + ("800" ?𐋺) + ("900" ?𐋻) + ("1/2" ?⳽) + + ("q" ?ⲑ) + ("Q" ?Ⲑ) + ("w" ?ⲱ) + ("W" ?Ⲱ) + ("e" ?ⲉ) + ("E" ?Ⲉ) + ("r" ?ⲣ) + ("R" ?Ⲣ) + ("t" ?ⲧ) + ("T" ?Ⲧ) + ("ti" ?ϯ) + ("Ti" ?Ϯ) + ("y" ?ⲏ) + ("Y" ?Ⲏ) + ("u" ?ⲩ) + ("U" ?Ⲩ) + ("i" ?ⲓ) + ("I" ?Ⲓ) + ("o" ?ⲟ) + ("O" ?Ⲟ) + ("p" ?ⲡ) + ("P" ?Ⲡ) + ("ps" ?ⲯ) + ("Ps" ?Ⲯ) + ("a" ?ⲁ) + ("A" ?Ⲁ) + ("s" ?ⲥ) + ("S" ?Ⲥ) + ("`s" ?ⲋ) + ("`S" ?Ⲋ) + ("sh" ?ϣ) + ("Sh" ?Ϣ) + ("d" ?ⲇ) + ("D" ?Ⲇ) + ("f" ?ⲫ) + ("F" ?Ⲫ) + ("g" ?ⲅ) + ("G" ?Ⲅ) + ("h" ?ϩ) + ("H" ?Ϩ) + ("j" ?ϫ) + ("J" ?Ϫ) + ("k" ?ⲕ) + ("K" ?Ⲕ) + ("kh" ?ⲭ) + ("Kh" ?Ⲭ) + ("l" ?ⲗ) + ("L" ?Ⲗ) + ("z" ?ⲍ) + ("Z" ?Ⲍ) + ("x" ?ⲝ) + ("X" ?Ⲝ) + ("`x" ?ϧ) + ("`X" ?Ϧ) + ("c" ?ϭ) + ("C" ?Ϭ) + ("v" ?ϥ) + ("V" ?Ϥ) + ("b" ?ⲃ) + ("B" ?Ⲃ) + ("n" ?ⲛ) + ("N" ?Ⲛ) + ("`n" ?⳯) + ("m" ?ⲙ) + ("M" ?Ⲙ) + + ("`," ?⳰) + ("`<" ?⳱) + ("`." ?⳾) + ("`/" ?⳿)) + (provide 'misc-lang) ;;; misc-lang.el ends here |