Mercurial > emacs
annotate lisp/language/devanagari.el @ 81790:8aa7f1b66163
(update-directory-autoloads): Remove duplicates without also removing
entries from other directories.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 10 Jul 2007 14:13:16 +0000 |
parents | e3694f1cb928 |
children | 9355f9b7bbff 95d0cdf160ea |
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 |
75347 | 3 ;; Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
74544 | 4 ;; Free Software Foundation, Inc. |
17052 | 5 |
49704
003055ca7e13
Maintainer's mail address changed.
Kenichi Handa <handa@m17n.org>
parents:
47726
diff
changeset
|
6 ;; Maintainer: KAWABATA, Taichi <kawabata@m17n.org> |
17052 | 7 ;; Keywords: multilingual, Indian, Devanagari |
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 2, 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 | |
17314
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17300
diff
changeset
|
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. | |
17052 | 25 |
26 ;;; Commentary: | |
27 | |
41469 | 28 ;; This file defines language-info of Devanagari script, and provides |
29 ;; 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
|
30 |
17052 | 31 ;;; Code: |
32 | |
33 (set-language-info-alist | |
41469 | 34 "Devanagari" '((charset indian-is13194 mule-unicode-0100-24ff |
35 indian-2-column indian-glyph ;; comment out later | |
36 ) | |
37 (coding-system in-is13194) | |
38 (coding-priority in-is13194) | |
39 (input-method . "dev-aiba") | |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20747
diff
changeset
|
40 (features devan-util) |
20747
63a3f7a57627
Exclude describe-indian-environment-map
Kenichi Handa <handa@m17n.org>
parents:
20159
diff
changeset
|
41 (documentation . "\ |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
42 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
|
43 are supported in this language environment.")) |
63a3f7a57627
Exclude describe-indian-environment-map
Kenichi Handa <handa@m17n.org>
parents:
20159
diff
changeset
|
44 '("Indian")) |
17052 | 45 |
33778 | 46 (provide 'devanagari) |
47 | |
52401 | 48 ;;; arch-tag: fd13667d-868b-41e8-81ef-79dd28bbfed2 |
17052 | 49 ;;; devanagari.el ends here |