changeset 99486:17bd52e948f6

* quail/hangul.el (hangul-im-keymap, hangul-insert-character) (hangul-djamo, hangul2-input-method-moum, hangul3-input-method-cho) (hangul3-input-method-jung, hangul3-input-method-jong): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 11 Nov 2008 08:53:14 +0000
parents 0fda80cdeb4b
children 647e1c7496bf
files leim/ChangeLog leim/quail/hangul.el
diffstat 2 files changed, 13 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/leim/ChangeLog	Tue Nov 11 08:41:18 2008 +0000
+++ b/leim/ChangeLog	Tue Nov 11 08:53:14 2008 +0000
@@ -1,6 +1,9 @@
 2008-11-11  Juanma Barranquero  <lekktu@gmail.com>
 
-	* quail/hangul.el (hangul-djamo): Fix typo in docstring.
+	* quail/hangul.el (hangul-im-keymap, hangul-insert-character)
+	(hangul-djamo, hangul2-input-method-moum, hangul3-input-method-cho)
+	(hangul3-input-method-jung, hangul3-input-method-jong):
+	Fix typos in docstrings.
 
 2008-11-07  Vasily Korytov  <vasily@korytov.pp.ru>  (tiny change)
 
--- a/leim/quail/hangul.el	Tue Nov 11 08:41:18 2008 +0000
+++ b/leim/quail/hangul.el	Tue Nov 11 08:53:14 2008 +0000
@@ -90,7 +90,7 @@
     (define-key map "\d" 'hangul-delete-backward-char)
     (define-key map [f9] 'hangul-to-hanja-conversion)
     map)
-  "Keymap for Hangul method.  It is used by all Hangul input method.")
+  "Keymap for Hangul method.  It is used by all Hangul input methods.")
 
 ;; Current input character buffer. Store separated hangul character.
 ;; The first and second are Choseong position.
@@ -136,8 +136,8 @@
    ""))
 
 (defun hangul-insert-character (&rest queues)
-  "Insert characters generated from QUEUEs.
-Each QUEUE has the same form as `hangul-queue'.
+  "Insert characters generated from QUEUES.
+Each queue has the same form as `hangul-queue'.
 Setup `quail-overlay' to the last character."
   (if (and mark-active transient-mark-mode)
       (progn
@@ -160,10 +160,10 @@
     (move-overlay quail-overlay (1+ (overlay-start quail-overlay)) (point))))
 
 (defun hangul-djamo (jamo char1 char2)
-  "Return the dobule Jamo index calculated from the arguments.
+  "Return the double Jamo index calculated from the arguments.
 JAMO is a type of Hangul Jamo; `cho', `jung', or `jong'.
 CHAR1 and CHAR2 are Hangul Jamo indices.
-Return nil if CHAR1 and CHAR2 can not combined."
+Return nil if CHAR1 and CHAR2 can not be combined."
   (let* ((jamo (cdr (assoc jamo hangul-djamo-table)))
          (char1 (cdr (assoc char1 jamo))))
     (if char1
@@ -237,7 +237,7 @@
 (defsubst hangul2-input-method-moum (char)
   "Store Hangul Jamo indice CHAR in `hangul-queue'.
 It is a Hangul 2-Bulsik Moum.
-This function process a Hangul 2-Bulsik Moum.
+This function processes a Hangul 2-Bulsik Moum.
 The Moum can be located in a Jungseong position.
 Other parts are the same as a `hangul2-input-method-jaum'."
   (if (cond ((zerop (aref hangul-queue 2))
@@ -260,7 +260,7 @@
 (defsubst hangul3-input-method-cho (char)
   "Store Hangul Jamo indice CHAR in `hangul-queue'.
 It is a Hangul 3-Bulsik Choseong.
-This function process a Hangul 3-Bulsik Choseong.
+This function processes a Hangul 3-Bulsik Choseong.
 The Hangul 3-Bulsik is composed of a Choseong, a Jungseong and a Jongseong.
 The Choseong can be located in a Choseong position.
 Other parts are the same as a `hangul2-input-method-jaum'."
@@ -278,7 +278,7 @@
 (defsubst hangul3-input-method-jung (char)
   "Store Hangul Jamo indice CHAR in `hangul-queue'.
 It is a Hangul 3-Bulsik Jungseong.
-This function process a Hangul 3-Bulsik Jungseong.
+This function processes a Hangul 3-Bulsik Jungseong.
 The Jungseong can be located in a Jungseong position.
 Other parts are the same as a `hangul3-input-method-cho'."
   (if (cond ((and (zerop (aref hangul-queue 2))
@@ -294,7 +294,7 @@
 (defsubst hangul3-input-method-jong (char)
   "Store Hangul Jamo indice CHAR in `hangul-queue'.
 It is a Hangul 3-Bulsik Jongseong.
-This function process a Hangul 3-Bulsik Jongseong.
+This function processes a Hangul 3-Bulsik Jongseong.
 The Jongseong can be located in a Jongseong position.
 Other parts are the same as a `hangul3-input-method-cho'."
   (if (cond ((and (zerop (aref hangul-queue 4))