980314 version
[elisp/egg.git] / its / ascii.el
diff --git a/its/ascii.el b/its/ascii.el
new file mode 100644 (file)
index 0000000..272a340
--- /dev/null
@@ -0,0 +1,55 @@
+;;; its/ascii.el --- ASCII Input in Egg Input Method Architecture
+
+;; Copyright (C) 1997, 1998 Mule Project,
+;; Powered by Electrotechnical Laboratory, JAPAN.
+;; Project Leader: Satoru Tomura <tomura@etl.go.jp>
+
+;; Author: KATAYAMA Yoshio <kate@pfu.co.jp>
+
+;; This file will be part of GNU Emacs (in future).
+
+;; GNU Emacs is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Commentary:
+;;
+;; Symbol input is desined by jiro@math.keio.ac.jp (TANAKA Jiro)
+;; This file is based on the rules of its/hira.el in Mule-2.3 distribution.
+;;
+
+;;; Code:
+
+(eval-when-compile
+  (require 'its))
+
+(define-its-state-machine its-up-map
+  "upcase" "aA" nil nil
+  "Map for upcase input."
+
+  (let ((i ? ))
+    (while (<= i ?~)
+      (its-defrule (char-to-string i) (upcase (char-to-string i)))
+      (setq i (1+ i)))))
+
+(define-its-state-machine its-down-map
+  "downcase" "aa" nil nil
+  "Map for downcase input."
+
+  (let ((i ? ))
+    (while (<= i ?~)
+      (its-defrule (char-to-string i) (char-to-string i))
+      (setq i (1+ i)))))
+
+(provide 'its/ascii)