]> code.delx.au - gnu-emacs/blobdiff - lisp/international/robin.el
msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the same in-line.
[gnu-emacs] / lisp / international / robin.el
index d56a1a6c578a510d67e8133b1cad78301373bf39..7a9eeb0f623dfd8535a4e2f692970494998e89b5 100644 (file)
@@ -1,11 +1,11 @@
 ;;; robin.el --- yet another input method (smaller than quail)
 
-;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
+;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
 ;;   Registration Number: H15PRO110
 
 ;; Author: TAKAHASHI Naoto <ntakahas@m17n.org>
-;; Keywords: mule, multilingual, input method
+;; Keywords: mule, multilingual, input method, i18n
 
 ;; This file is part of GNU Emacs.
 
 
 (defvar robin-package-alist nil
   "List of robin packages.
-A robin pacakge is of the form (NAME DOCSTRING &rest RULES).
+A robin package is of the form (NAME DOCSTRING &rest RULES).
 NAME is a string specifying a particular robin package.
 DOCSTRING is a documentation string for the robin package.
 
@@ -260,7 +260,7 @@ KEY is a string.
 OUTPUT is a character or a string.
 For example, if you evaluate the following,
 
-(robin-define-package \"test\" \"Uppercase input characters\"
+\(robin-define-package \"test\" \"Uppercase input characters\"
   (\"a\" \"A\")
   (\"ab\" \"AB\")
   (\"ac\" \"AC\")
@@ -271,7 +271,7 @@ For example, if you evaluate the following,
 this robin package will be the following.
 
   (\"test\" \"Uppercase input characters\"
-   (?a \"A\" 
+   (?a \"A\"
        (?b \"AB\")
        (?c \"AC\"
           (?d \"ACD\")
@@ -377,7 +377,7 @@ Internal use only."
 
 (defvar robin-current-package-name nil
   "String representing the name of the current robin package.
-Nil means no packages is selected.")
+A nil value means no package is selected.")
 (make-variable-buffer-local 'robin-current-package-name)
 
 ;;;###autoload
@@ -399,7 +399,7 @@ Nil means no packages is selected.")
 (defun robin-activate (&optional arg)
   "Activate robin input method.
 
-With ARG, activate robin input method iff ARG is positive.
+With ARG, activate robin input method if and only if ARG is positive.
 
 While this input method is active, the variable
 `input-method-function' is bound to the function `robin-input-method'."
@@ -567,9 +567,9 @@ used."
 
 (provide 'robin)
 
-;;; Local Variables:
-;;; coding: utf-8-emacs
-;;; End:
+;; Local Variables:
+;; coding: utf-8-emacs
+;; End:
 
 ;; arch-tag: ba995140-7436-4a57-b875-747fc340f605
 ;;; robin.el ends here