Sync to HEAD
[bpt/emacs.git] / lisp / language / tamil.el
CommitLineData
585eb076
KH
1;;; tamil.el --- Support for Tamil -*- coding: iso-2022-7bit; no-byte-compile: t -*-
2
3;; Copyright (C) 2003 Free Software Foundation, Inc.
4
5;; Maintainer: KAWABATA, Taichi <batta@beige.ocn.ne.jp>
6;; Keywords: multilingual, Indian, Tamil
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
24
25;;; Commentary:
26
27;; This file defines language-info of Tamil script.
28
29;;; Code:
30
31(set-language-info-alist
32 "Tamil" '((charset mule-unicode-0100-24ff indian-glyph )
33 (coding-system utf-8)
34 (coding-priority utf-8)
35 (input-method . "tamil-itrans")
36 (features tml-util)
37 (documentation . "\
9b4f7f2e 38South Indian Language Tamil supported in this language environment."))
585eb076
KH
39 '("Indian"))
40
8f924df7
KH
41;; For automatic composition.
42(set-char-table-range composition-function-table '(#x0b80 . #x0bff)
43 'tamil-composition-function)
585eb076
KH
44(provide 'tamil)
45
6b61353c 46;;; arch-tag: 2201ac78-7d1e-4674-9bcb-9923c7a2bd9c
585eb076 47;;; tamil.el ends here