From b2e6ed40268e7339be501b3481774773179ca476 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 18 Jan 2021 19:17:59 +0200 Subject: [PATCH] Fix recent changes for Cham script * lisp/language/cham.el ("Cham"): Fix sample-text. * lisp/leim/quail/cham.el: Really install this new file. --- lisp/language/cham.el | 2 +- lisp/leim/quail/cham.el | 116 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 117 insertions(+), 1 deletion(-) create mode 100644 lisp/leim/quail/cham.el diff --git a/lisp/language/cham.el b/lisp/language/cham.el index 59eaef67bfa..089988da918 100644 --- a/lisp/language/cham.el +++ b/lisp/language/cham.el @@ -36,7 +36,7 @@ (coding-system utf-8) (coding-priority utf-8) (input-method . "cham") - (sample-text . "Cham (ꨌꩌ)\tꨦꨤꩌ ꨦꨰꨁ") + (sample-text . "Cham (ꨌꩌ)\tꨦꨤꩌ ꨦꨁꨰ") (documentation . "\ The Cham script is a Brahmic script used to write Cham, an Austronesian language spoken by some 245,000 Chams diff --git a/lisp/leim/quail/cham.el b/lisp/leim/quail/cham.el new file mode 100644 index 00000000000..d12ae6cddf0 --- /dev/null +++ b/lisp/leim/quail/cham.el @@ -0,0 +1,116 @@ +;;; cham.el --- Quail package for inputting Cham characters -*- coding: utf-8; lexical-binding:t -*- + +;; Copyright (C) 2021 Free Software Foundation, Inc. + +;; Author: Eli Zaretskii +;; Keywords: i18n + +;; This file is part of GNU Emacs. + +;; GNU Emacs is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; GNU Emacs is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with GNU Emacs. If not, see . + +;;; Commentary: + +;; This file defines the following Cham keyboards: +;; +;; - QWERTY-based Cham. + +;;; Code: + +(require 'quail) + +(quail-define-package + "cham" "Cham" "ꨌꩌ" t + "A QWERTY-based Cham input method." + nil t nil nil t nil nil nil nil nil t) + +(quail-define-rules + ("a" ?ꨀ) + ("A" ?ꨄ) + ("i" ?ꨁ) + ("u" ?ꨂ) + ("e" ?ꨃ) + ("o" ?ꨅ) + ("k" ?ꨆ) + ("K" ?ꨇ) + ("g" ?ꨈ) + ("G" ?ꨉ) + ("q" ?ꨊ) + ("Q" ?ꨋ) + ("c" ?ꨌ) + ("C" ?ꨍ) + ("j" ?ꨎ) + ("J" ?ꨏ) + ("z" ?ꨐ) + ("Z" ?ꨑ) + ("zz" ?ꨒ) + ("t" ?ꨓ) + ("T" ?ꨔ) + ("d" ?ꨕ) + ("D" ?ꨖ) + ("n" ?ꨗ) + ("N" ?ꨘ) + ("p" ?ꨚ) + ("P" ?ꨛ) + ("f" ?ꨜ) + ("b" ?ꨝ) + ("B" ?ꨞ) + ("m" ?ꨟ) + ("M" ?ꨠ) + ("mm" ?ꨡ) + ("y" ?ꨢ) + ("r" ?ꨣ) + ("l" ?ꨤ) + ("w" ?ꨥ) + ("v" ?ꨥ) + ("x" ?ꨦ) + ("s" ?ꨧ) + ("h" ?ꨨ) + ("kk" ?ꩀ) + ("ww" ?ꩁ) + ("vv" ?ꩁ) + ("qq" ?ꩂ) + ("cc" ?ꩄ) + ("tt" ?ꩅ) + ("nn" ?ꩆ) + ("pp" ?ꩇ) + ("yy" ?ꩈ) + ("rr" ?ꩉ) + ("ll" ?ꩊ) + ("gg" ?ꩊ) + ("xx" ?ꩋ) + ("." ?ꩌ) + ("H" ?ꩍ) + ("0" ?꩐) + ("1" ?꩑) + ("2" ?꩒) + ("3" ?꩓) + ("4" ?꩔) + ("5" ?꩕) + ("6" ?꩖) + ("7" ?꩗) + ("8" ?꩘) + ("9" ?꩙) + ("!" ?ꨩ) + ("#" ?ꨪ) + ("$" ?ꨫ) + ("^" ?ꨬ) + ("&" ?ꨮ) + ("`" ?꩜) + ("=" ?ꨱ) + ("-" ?ꩃ) + ("~" ?꩟) + ) + +;;; cham.el ends here -- 2.39.5