Function: hangul3-input-method-jung

hangul3-input-method-jung is a byte-compiled function defined in hangul.el.gz.

Signature

(hangul3-input-method-jung CHAR)

Documentation

Store Hangul Jamo indice CHAR in hangul-queue.

It is 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.

Source Code

;; Defined in /usr/src/emacs/lisp/leim/quail/hangul.el.gz
(defsubst hangul3-input-method-jung (char)
  "Store Hangul Jamo indice CHAR in `hangul-queue'.
It is 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))
                  (zerop (aref hangul-queue 4)))
             (aset hangul-queue 2 char))
            ((and (zerop (aref hangul-queue 3))
                  (notzerop (hangul-djamo 'jung (aref hangul-queue 2) char)))
             (aset hangul-queue 3 char)))
      (hangul-insert-character hangul-queue)
    (hangul-insert-character hangul-queue
			     (setq hangul-queue (vector 0 0 char 0 0 0)))))