Function: hanja-list-next-group

hanja-list-next-group is a byte-compiled function defined in hanja-util.el.gz.

Signature

(hanja-list-next-group)

Documentation

Select the next group of hangul->hanja conversions.

Source Code

;; Defined in /usr/src/emacs/lisp/language/hanja-util.el.gz
(defun hanja-list-next-group ()
  "Select the next group of hangul->hanja conversions."
  (let* ((base (aref hanja-conversions 0))
         (offset (aref hanja-conversions 1))
         (next-list (nthcdr (* (1+ base) hanja-list-width)
                            (aref hanja-conversions 2))))
    (when next-list
      (aset hanja-conversions 0 (1+ base))
      (if (< (1- (length next-list)) offset)
          (aset hanja-conversions 1 (1- (length next-list)))))))