Mercurial > emacs
annotate lisp/language/tamil.el @ 91569:4a3d0b905c9e
(--with-gcc): Give an error saying this option has been removed.
(--with-gtk): Remove this option.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 06 Feb 2008 07:57:24 +0000 |
parents | 606f2d163a64 |
children |
rev | line source |
---|---|
49702 | 1 ;;; tamil.el --- Support for Tamil -*- coding: iso-2022-7bit; no-byte-compile: t -*- |
2 | |
79711 | 3 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 |
4 ;; Free Software Foundation, Inc. | |
49702 | 5 |
6 ;; Maintainer: KAWABATA, Taichi <batta@beige.ocn.ne.jp> | |
7 ;; Keywords: multilingual, Indian, Tamil | |
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 | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
49702 | 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 | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
49702 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This file defines language-info of Tamil script. | |
29 | |
30 ;;; Code: | |
31 | |
32 (set-language-info-alist | |
33 "Tamil" '((charset mule-unicode-0100-24ff indian-glyph ) | |
34 (coding-system utf-8) | |
35 (coding-priority utf-8) | |
36 (input-method . "tamil-itrans") | |
37 (features tml-util) | |
38 (documentation . "\ | |
49721 | 39 South Indian Language Tamil supported in this language environment.")) |
49702 | 40 '("Indian")) |
41 | |
89483 | 42 ;; For automatic composition. |
43 (set-char-table-range composition-function-table '(#x0b80 . #x0bff) | |
91283
663fd3a26530
Register font-shape-text in composition-function-table.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
44 '(("[\x0B80-\x0BFF]+" . font-shape-text))) |
49702 | 45 (provide 'tamil) |
46 | |
52401 | 47 ;;; arch-tag: 2201ac78-7d1e-4674-9bcb-9923c7a2bd9c |
49702 | 48 ;;; tamil.el ends here |