]> code.delx.au - gnu-emacs/blob - lisp/language/lao.el
Switch to recommended form of GPLv3 permissions notice.
[gnu-emacs] / lisp / language / lao.el
1 ;;; lao.el --- support for Lao -*- coding: iso-2022-7bit; no-byte-compile: t -*-
2
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 ;; Free Software Foundation, Inc.
5 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
6 ;; 2007, 2008
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
8 ;; Registration Number H14PRO021
9 ;; Copyright (C) 2003
10 ;; National Institute of Advanced Industrial Science and Technology (AIST)
11 ;; Registration Number H13PRO009
12
13 ;; Keywords: multilingual, Lao
14
15 ;; This file is part of GNU Emacs.
16
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation, either version 3 of the License, or
20 ;; (at your option) any later version.
21
22 ;; GNU Emacs is distributed in the hope that it will be useful,
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;; GNU General Public License for more details.
26
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29
30 ;;; Commentary:
31
32 ;;; Code:
33
34 (define-coding-system 'lao
35 "8-bit encoding for ASCII (MSB=0) and LAO (MSB=1)."
36 :coding-type 'charset
37 :mnemonic ?L
38 :charset-list '(lao))
39
40 (set-language-info-alist
41 "Lao" '((charset lao)
42 (coding-system lao)
43 (coding-priority lao)
44 (input-method . "lao")
45 (unibyte-display . lao)
46 (features lao-util)
47 (documentation . t)))
48
49 (set-char-table-range composition-function-table '(#xE80 . #xEDF)
50 '(("[\xE80-\xEDF]+" . lao-composition-function)))
51
52 (provide 'lao)
53
54 ;; arch-tag: ba540fd9-6352-4449-a9cd-669afd21fa57
55 ;;; lao.el ends here