(in-is13194-devanagari): Fix
[bpt/emacs.git] / lisp / language / indian.el
CommitLineData
1bec6fdb 1;;; indian.el --- Indian languages support -*- coding: iso-2022-7bit; -*-
4ed46869 2
1bec6fdb 3;; Copyright (C) 1999, 2001 Free Software Foundation, Inc.
4ed46869 4
1bec6fdb 5;; Maintainer: KAWABATA, Taichi <batta@beige.ocn.ne.jp>
51896ebc 6;; Keywords: multilingual, i18n, Indian
4ed46869
KH
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
e803d6bd
KH
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.
4ed46869
KH
24
25;;; Commentary:
26
1bec6fdb
RS
27;; This file defines in-is13194 coding system and relationship between
28;; indian-glyph character-set and various CDAC fonts.
4ed46869
KH
29
30;;; Code:
31
e1915ab3
KH
32(define-coding-system 'in-is13194-devanagari
33 "8-bit encoding for ASCII (MSB=0) and IS13194-Devanagari (MSB=1)."
34 :coding-type 'iso-2022
35 :mnemonic ?D
36 :designation [ascii indian-is13194 nil nil]
37 :charset-list '(ascii indian-is13194)
5e145d59
KH
38 :post-read-conversion 'in-is13194-post-read-conversion
39 :pre-write-conversion 'in-is13194-pre-write-conversion)
e1915ab3
KH
40
41(define-coding-system-alias 'devanagari 'in-is13194-devanagari)
1bec6fdb 42
1bec6fdb
RS
43(defvar indian-default-script 'devanagari
44 "Default script for Indian languages.
45Each Indian language environment sets this value
46to one of `indian-script-table' (which see).
47The default value is `devanagari'.")
48
41da80b1 49(provide 'indian)
1bec6fdb 50
4ed46869 51;;; indian.el ends here