annotate lisp/language/arabic.el @ 195:a2f645c6b9f8 r20-3b24

Import from CVS: tag r20-3b24
author cvs
date Mon, 13 Aug 2007 09:59:05 +0200
parents 85ec50267440
children e45d5e7c476e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1 ;;; arabic.el --- pre-loaded support for Arabic.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
3 ;; Copyright (C) 1992,93,94,95 Free Software Foundation, Inc.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
4 ;; Copyright (C) 1995 Amdahl Corporation.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
5 ;; Copyright (C) 1995 Sun Microsystems.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
6
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
7 ;; This file is part of XEmacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
8
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
9 ;; XEmacs is free software; you can redistribute it and/or modify it
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
10 ;; under the terms of the GNU General Public License as published by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
12 ;; any later version.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
13
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
14 ;; XEmacs is distributed in the hope that it will be useful, but
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
17 ;; General Public License for more details.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
18
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
20 ;; along with XEmacs; see the file COPYING. If not, write to the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
23
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
24 ;;; Commentary:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
25
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26 ;; Synched up with: Mule 2.3.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
28 ;;; Code:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
29
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
30 ;; Three character sets for Arabic
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
31 (make-charset 'arabic-digit "Arabic digits"
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
32 '(registry "MuleArabic-0"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
33 dimension 1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
34 chars 94
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
35 final ?2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
36 graphic 0
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
37 direction l2r
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
38 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
39
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
40 (make-charset 'arabic-1-column "Arabic 1-column"
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
41 '(registry "MuleArabic-1"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
42 dimension 1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
43 chars 94
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
44 final ?3
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
45 graphic 0
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
46 direction r2l
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
47 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
48
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
49 (make-charset 'arabic-2-column "Arabic 2-column"
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
50 '(registry "MuleArabic-2"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
51 dimension 1
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
52 chars 94
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
53 final ?4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
54 graphic 0
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
55 direction r2l
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
56 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
57
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
58 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
59 ;;; ARABIC
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
60 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
61
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
62 (define-language-environment 'arabic
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
63 "Arabic"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
64 (lambda ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
65 (require 'arabic)))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
66
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
67 ;;; arabic.el ends here