2002-10-01 17:06:54 +00:00
|
|
|
|
;;; lao.el --- support for Lao -*- coding: iso-2022-7bit; no-byte-compile: t -*-
|
1997-02-26 12:22:56 +00:00
|
|
|
|
|
|
|
|
|
;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
|
1997-06-22 08:57:18 +00:00
|
|
|
|
;; Licensed to the Free Software Foundation.
|
2001-12-07 18:16:15 +00:00
|
|
|
|
;; Copyright (C) 2001 Free Software Foundation, Inc.
|
1997-02-26 12:22:56 +00:00
|
|
|
|
|
|
|
|
|
;; Keywords: multilingual, Lao
|
|
|
|
|
|
|
|
|
|
;; 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 2, 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; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
|
|
|
|
|
2001-07-15 19:53:53 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1997-02-26 12:22:56 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(make-coding-system
|
1997-06-10 01:08:21 +00:00
|
|
|
|
'lao 2 ?L
|
2001-12-18 17:51:50 +00:00
|
|
|
|
"8-bit encoding for ASCII (MSB=0) and LAO (MSB=1)."
|
1998-01-22 01:46:28 +00:00
|
|
|
|
'(ascii lao nil nil
|
2002-11-18 00:07:56 +00:00
|
|
|
|
nil nil nil nil nil nil nil nil nil nil nil t)
|
2001-12-07 18:16:15 +00:00
|
|
|
|
'((safe-charsets ascii lao)
|
|
|
|
|
(post-read-conversion . lao-post-read-conversion)))
|
1997-02-26 12:22:56 +00:00
|
|
|
|
|
|
|
|
|
(set-language-info-alist
|
1998-08-10 06:29:02 +00:00
|
|
|
|
"Lao" '((charset lao)
|
1998-01-22 01:46:28 +00:00
|
|
|
|
(coding-system lao)
|
|
|
|
|
(coding-priority lao)
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(input-method . "lao")
|
|
|
|
|
(nonascii-translation . lao)
|
|
|
|
|
(unibyte-display . lao)
|
|
|
|
|
(features lao-util)
|
1997-05-16 00:59:09 +00:00
|
|
|
|
(documentation . t)))
|
1997-02-26 12:22:56 +00:00
|
|
|
|
|
|
|
|
|
(aset use-default-ascent ?(1;(B t)
|
2001-12-07 18:16:15 +00:00
|
|
|
|
(aset use-default-ascent ?$,1D;(B t)
|
1997-02-26 12:22:56 +00:00
|
|
|
|
(aset use-default-ascent ?(1=(B t)
|
2001-12-07 18:16:15 +00:00
|
|
|
|
(aset use-default-ascent ?$,1D=(B t)
|
1997-02-26 12:22:56 +00:00
|
|
|
|
(aset use-default-ascent ?(1?(B t)
|
2001-12-07 18:16:15 +00:00
|
|
|
|
(aset use-default-ascent ?$,1D?(B t)
|
1997-02-26 12:22:56 +00:00
|
|
|
|
(aset use-default-ascent ?(1B(B t)
|
2001-12-07 18:16:15 +00:00
|
|
|
|
(aset use-default-ascent ?$,1DB(B t)
|
1997-08-10 04:09:49 +00:00
|
|
|
|
(aset ignore-relative-composition ?(1\(B t)
|
2001-12-07 18:16:15 +00:00
|
|
|
|
(aset ignore-relative-composition ?$,1D\(B t)
|
1997-02-26 12:22:56 +00:00
|
|
|
|
|
1999-12-15 00:47:31 +00:00
|
|
|
|
;; Register a function to compose Lao characters.
|
2001-12-07 18:16:15 +00:00
|
|
|
|
(let ((patterns '(("\\c0\\c9?\\(\\(\\c2\\|\\c3\\)\\c4?\\|\\c4\\)?"
|
|
|
|
|
. lao-composition-function))))
|
|
|
|
|
(aset composition-function-table (make-char 'lao) patterns)
|
|
|
|
|
(dotimes (i (1+ (- #xeff #xe80)))
|
|
|
|
|
(aset composition-function-table (decode-char 'ucs (+ i #xe80)) patterns)))
|
1999-12-15 00:47:31 +00:00
|
|
|
|
|
2000-11-22 19:28:28 +00:00
|
|
|
|
(provide 'lao)
|
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
|
;;; arch-tag: ba540fd9-6352-4449-a9cd-669afd21fa57
|
1997-02-26 12:22:56 +00:00
|
|
|
|
;;; lao.el ends here
|