Updates to my about.el bio.
[sxemacs] / lisp / mule / viet-chars.el
1 ;;; vietnamese-chars.el --- pre-loaded support for Vietnamese, part 1.
2
3 ;; Copyright (C) 1992,93,94,95 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995 Amdahl Corporation.
5 ;; Copyright (C) 1995 Sun Microsystems.
6
7 ;; This file is part of SXEmacs.
8
9 ;; SXEmacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
13
14 ;; SXEmacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22 ;;; Synched up with: Mule 2.3.
23
24 ;; We have to split up the Vietnamese stuff into two files because
25 ;; we are registering new charsets and then immediately using characters
26 ;; from those sets.  We cannot reliably expect this to work if they
27 ;; are in the same file because of the buffering that happens while
28 ;; reading -- the place where we use the newly-defined sets may be
29 ;; read in before the code that creates those sets is evaluated.
30
31 ;; Vietnamese VISCII with two tables.
32 (make-charset 'vietnamese-viscii-lower "VISCII lower (Vietnamese)"
33               '(registry "VISCII1.1"
34                 dimension 1
35                 chars 96
36                 final ?1
37                 graphic 1
38                 ))
39
40 (make-charset 'vietnamese-viscii-upper "VISCII upper (Vietnamese)"
41               '(registry "VISCII1.1"
42                 dimension 1
43                 chars 96
44                 final ?2
45                 graphic 1
46                 ))
47
48 (modify-syntax-entry 'vietnamese-viscii-lower "w")
49 (modify-syntax-entry 'vietnamese-viscii-upper "w")
50
51 (define-category ?v "Vietnamese character.")
52 (modify-category-entry 'vietnamese-viscii-lower ?v)
53 (modify-category-entry 'vietnamese-viscii-upper ?v)
54
55 ;;; vietnamese-chars.el ends here