Mercurial > emacs
annotate lisp/language/devanagari.el @ 53743:30797cf81519
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 29 Jan 2004 02:54:22 +0000 |
parents | 695cf19ef79e |
children | 197607499a29 375f2633d815 |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
41469
diff
changeset
|
1 ;;; devanagari.el --- Support for Devanagari -*- coding: iso-2022-7bit; no-byte-compile: t -*- |
17052 | 2 |
41469 | 3 ;; Copyright (C) 1996, 2001 Free Software Foundation, Inc. |
17052 | 4 |
49704
003055ca7e13
Maintainer's mail address changed.
Kenichi Handa <handa@m17n.org>
parents:
47726
diff
changeset
|
5 ;; Maintainer: KAWABATA, Taichi <kawabata@m17n.org> |
17052 | 6 ;; Keywords: multilingual, Indian, Devanagari |
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 | |
17314
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17300
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17300
diff
changeset
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17300
diff
changeset
|
23 ;; Boston, MA 02111-1307, USA. |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
41469 | 27 ;; This file defines language-info of Devanagari script, and provides |
28 ;; compatibility support of old implementation of Devanagari script. | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
29 |
17052 | 30 ;;; Code: |
31 | |
32 (set-language-info-alist | |
41469 | 33 "Devanagari" '((charset indian-is13194 mule-unicode-0100-24ff |
34 indian-2-column indian-glyph ;; comment out later | |
35 ) | |
36 (coding-system in-is13194) | |
37 (coding-priority in-is13194) | |
38 (input-method . "dev-aiba") | |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20747
diff
changeset
|
39 (features devan-util) |
20747
63a3f7a57627
Exclude describe-indian-environment-map
Kenichi Handa <handa@m17n.org>
parents:
20159
diff
changeset
|
40 (documentation . "\ |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
41 Such languages using Devanagari script as Hindi and Marathi |
20747
63a3f7a57627
Exclude describe-indian-environment-map
Kenichi Handa <handa@m17n.org>
parents:
20159
diff
changeset
|
42 are supported in this language environment.")) |
63a3f7a57627
Exclude describe-indian-environment-map
Kenichi Handa <handa@m17n.org>
parents:
20159
diff
changeset
|
43 '("Indian")) |
17052 | 44 |
33778 | 45 (provide 'devanagari) |
46 | |
52401 | 47 ;;; arch-tag: fd13667d-868b-41e8-81ef-79dd28bbfed2 |
17052 | 48 ;;; devanagari.el ends here |