charset map entries are pointerless
[bpt/emacs.git] / leim / leim-ext.el
CommitLineData
c87143d0 1;; leim-ext.el -- extra leim configuration -*- coding:utf-8; -*-
194ad290 2
ba318903 3;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
5df4f04c 4;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
194ad290
KH
5;; National Institute of Advanced Industrial Science and Technology (AIST)
6;; Registration Number H13PRO009
7
8;; This file is part of GNU Emacs.
9
d3fb0974 10;; GNU Emacs is free software: you can redistribute it and/or modify
194ad290 11;; it under the terms of the GNU General Public License as published by
d3fb0974
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
194ad290
KH
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
d3fb0974 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
194ad290
KH
22
23;;; Commentary:
24
25;; Makefile in this directory appends the contents of this file (only
68330491
EZ
26;; such non-empty lines that don't begin with ';') to the generated
27;; file leim-list.el.
194ad290
KH
28
29;;; Code:
30
31(eval-after-load "quail/PY-b5"
c87143d0 32 '(quail-defrule "ling2" ?○ nil t))
4e605676 33
59579816
KH
34;; Enable inputting full-width space (U+3000).
35(eval-after-load "quail/Punct"
c87143d0 36 '(quail-defrule " " ?  nil t))
59579816 37(eval-after-load "quail/Punct-b5"
c87143d0 38 '(quail-defrule " " ?  nil t))
59579816 39
c64fbf1f
KH
40(register-input-method "ucs" "UTF-8" 'ucs-input-activate "U+"
41 "Unicode input as hex in the form Uxxxx.")
42
913f26c2
KH
43(register-input-method
44 "korean-hangul"
45 "UTF-8"
46 'hangul-input-method-activate
c87143d0 47 "한2"
913f26c2
KH
48 "Hangul 2-Bulsik Input"
49 'hangul2-input-method
c87143d0 50 "Input method: korean-hangul2 (mode line indicator:한2)\n\nHangul 2-Bulsik input method.")
913f26c2
KH
51
52(register-input-method
53 "korean-hangul3f"
54 "UTF-8"
55 'hangul-input-method-activate
c87143d0 56 "한3f"
913f26c2
KH
57 "Hangul 3-Bulsik final Input"
58 'hangul3-input-method
c87143d0 59 "Input method: korean-hangul3 (mode line indicator:한3f)\n\nHangul 3-Bulsik final input method.")
913f26c2
KH
60
61(register-input-method
62 "korean-hangul390"
63 "UTF-8"
64 'hangul-input-method-activate
c87143d0 65 "한390"
913f26c2
KH
66 "Hangul 3-Bulsik 390 Input"
67 'hangul390-input-method
c87143d0 68 "Input method: korean-hangul390 (mode line indicator:한390)\n\nHangul 3-Bulsik 390 input method.")
913f26c2
KH
69
70(register-input-method
71 "korean-hangul3"
72 "UTF-8"
73 'hangul-input-method-activate
c87143d0 74 "한390"
913f26c2
KH
75 "Hangul 3-Bulsik 390 Input"
76 'hangul390-input-method
c87143d0 77 "Input method: korean-hangul390 (mode line indicator:한390)\n\nHangul 3-Bulsik 390 input method.")
913f26c2 78
698c0f24 79;; Following lines are marked such that Makefile adds them to output.
cb6c95a3
GM
80;; leim-list-header adds "coding: utf-8"; we could move that here,
81;; unless others are using that stuff to generate their own leim files.
698c0f24 82;; TODO? Better to add leim-list-footer?
cb6c95a3 83
698c0f24
GM
84;;inc Local Variables:
85;;inc no-byte-compile: t
86;;inc version-control: never
87;;inc no-update-autoloads: t
88;;inc End:
cb6c95a3 89
698c0f24 90;;;inc leim-list.el ends here
cb6c95a3
GM
91
92;;; leim-ext.el ends here