diff options
| author | समीर सिंह Sameer Singh | 2022-10-06 17:34:28 +0530 |
|---|---|---|
| committer | Eli Zaretskii | 2022-10-08 10:46:48 +0300 |
| commit | 75b7aacbf608ab49991aa945c5a4e54774084294 (patch) | |
| tree | 6457c88c5ed1d771ab7bb51e508c39c8995eebd3 /lisp/language | |
| parent | 31919508392dd2a6749588b2b8ffe376a4a4444d (diff) | |
| download | emacs-75b7aacbf608ab49991aa945c5a4e54774084294.tar.gz 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/language')
| -rw-r--r-- | lisp/language/misc-lang.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lisp/language/misc-lang.el b/lisp/language/misc-lang.el index 4a2e7838fcd..370be4b4a39 100644 --- a/lisp/language/misc-lang.el +++ b/lisp/language/misc-lang.el | |||
| @@ -319,6 +319,20 @@ in this language environment."))) | |||
| 319 | Ancient Gothic language using the Gothic script is supported in this | 319 | Ancient Gothic language using the Gothic script is supported in this |
| 320 | language environment."))) | 320 | language environment."))) |
| 321 | 321 | ||
| 322 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
| 323 | ;; Coptic | ||
| 324 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
| 325 | |||
| 326 | (set-language-info-alist | ||
| 327 | "Coptic" '((charset unicode) | ||
| 328 | (coding-system utf-8) | ||
| 329 | (coding-priority utf-8) | ||
| 330 | (input-method . "coptic") | ||
| 331 | (sample-text . "Coptic (ⲘⲉⲧⲢⲉⲙ̀ⲛⲭⲏⲙⲓ) Ⲛⲟⲩϥⲣⲓ") | ||
| 332 | (documentation . "\ | ||
| 333 | Coptic language using the Coptic script is supported in this | ||
| 334 | language environment."))) | ||
| 335 | |||
| 322 | (provide 'misc-lang) | 336 | (provide 'misc-lang) |
| 323 | 337 | ||
| 324 | ;;; misc-lang.el ends here | 338 | ;;; misc-lang.el ends here |