Function: hanja-list-prev

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

Signature

(hanja-list-prev)

Documentation

Select the previous candidate of hangul->hanja conversion.

Source Code

;; Defined in /usr/src/emacs/lisp/language/hanja-util.el.gz
(defun hanja-list-prev ()
  "Select the previous candidate of hangul->hanja conversion."
  (let ((base (aref hanja-conversions 0))
        (offset (aref hanja-conversions 1)))
    (cond ((> offset 0)
           (aset hanja-conversions 1 (1- offset)))
          ((> base 0)
           (hanja-list-prev-group)
           (aset hanja-conversions 1 (1- hanja-list-width))))))