]> git.eshelyaron.com Git - emacs.git/commitdiff
Add Unicode equivalents.
authorDave Love <fx@gnu.org>
Fri, 7 Dec 2001 18:16:15 +0000 (18:16 +0000)
committerDave Love <fx@gnu.org>
Fri, 7 Dec 2001 18:16:15 +0000 (18:16 +0000)
(lao): Add post-read conversion.

lisp/language/lao.el

index ec2a62943d3b586d957455e26479835f1282eb14..d4c54d0c1652662f89cf928ea9a4f60af6021451 100644 (file)
@@ -2,6 +2,7 @@
 
 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
 ;; Licensed to the Free Software Foundation.
+;; Copyright (C) 2001 Free Software Foundation, Inc.
 
 ;; Keywords: multilingual, Lao
 
@@ -31,7 +32,8 @@
  "8-bit encoding for ASCII (MSB=0) and LAO (MSB=1)"
  '(ascii lao nil nil
    nil nil)
- '((safe-charsets ascii lao)))
+ '((safe-charsets ascii lao)
+   (post-read-conversion . lao-post-read-conversion)))
 
 (set-language-info-alist
  "Lao" '((charset lao)
         (documentation . t)))
 
 (aset use-default-ascent ?\e(1;\e(B t)
+(aset use-default-ascent ?\e$,1D;\e(B t)
 (aset use-default-ascent ?\e(1=\e(B t)
+(aset use-default-ascent ?\e$,1D=\e(B t)
 (aset use-default-ascent ?\e(1?\e(B t)
+(aset use-default-ascent ?\e$,1D?\e(B t)
 (aset use-default-ascent ?\e(1B\e(B t)
+(aset use-default-ascent ?\e$,1DB\e(B t)
 (aset ignore-relative-composition ?\e(1\\e(B t)
+(aset ignore-relative-composition ?\e$,1D\\e(B t)
 
 ;; Register a function to compose Lao characters.
-(aset composition-function-table (make-char 'lao)
-      '(("\\c0\\c9?\\(\\(\\c2\\|\\c3\\)\\c4?\\|\\c4\\)?"
-        . lao-composition-function)))
+(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)))
 
 (provide 'lao)