]> code.delx.au - gnu-emacs/blob - lisp/language/malayalam.el
Merge from emacs--devo--0
[gnu-emacs] / lisp / language / malayalam.el
1 ;;; malayalam.el --- Support for Malayalam -*- coding: iso-2022-7bit; no-byte-compile: t -*-
2
3 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
4 ; Free Software Foundation, Inc.
5
6 ;; Maintainer: KAWABATA, Taichi <kawabata@m17n.org>
7 ;; Keywords: multilingual, Indian, Malayalam
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; This file defines language-info of Malayalam script.
29
30 ;;; Code:
31
32 (set-language-info-alist
33 "Malayalam" '((charset mule-unicode-0100-24ff indian-glyph )
34 ;; indian-2-column
35 ;; comment out later
36 ;; )
37 (coding-system utf-8)
38 (coding-priority utf-8)
39 (input-method . "malayalam-itrans")
40 (features mlm-util)
41 (documentation . "\
42 South Indian language Malayalam is supported in this language environment."))
43 '("Indian"))
44
45 ;; For automatic composition.
46 (set-char-table-range composition-function-table '(#x0d00 . #x0d7f)
47 '(("[\x0D00-\x0D7F]+" . font-shape-text)))
48
49 (provide 'malayalam)
50
51 ;;; arch-tag: 5f500e53-1e4f-4bb2-aa93-ad8736f0349f
52 ;;; malayalam.el ends here