]> code.delx.au - gnu-emacs/blob - lisp/language/lao.el
Split XEmacs/Emacs definitions and sample setup code into separate files
[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 Free Software Foundation, Inc.
4 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
5 ;; National Institute of Advanced Industrial Science and Technology (AIST)
6 ;; Registration Number H14PRO021
7 ;; Copyright (C) 2003
8 ;; National Institute of Advanced Industrial Science and Technology (AIST)
9 ;; Registration Number H13PRO009
10
11 ;; Keywords: multilingual, Lao
12
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
19
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 ;; Boston, MA 02110-1301, USA.
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 ;; For automatic composition.
50 (let ((chars "\e(1QTUVWXY[\hijklm\e(B"))
51 (dotimes (i (length chars))
52 (aset composition-function-table (aref chars i)
53 'lao-composition-function)))
54
55 (provide 'lao)
56
57 ;;; arch-tag: ba540fd9-6352-4449-a9cd-669afd21fa57
58 ;;; lao.el ends here