Function: skkdic-get-candidate-list

skkdic-get-candidate-list is a byte-compiled function defined in ja-dic-cnv.el.gz.

Signature

(skkdic-get-candidate-list FROM TO)

Source Code

;; Defined in /usr/src/emacs/lisp/international/ja-dic-cnv.el.gz
;; FROM and TO point the head and tail of "/J../J../.../".
(defun skkdic-get-candidate-list (from to)
  (let (candidates)
    (goto-char from)
    (while (re-search-forward "/[^/ \n]+" to t)
      (setq candidates (cons (buffer-substring-no-properties
                              (1+ (match-beginning 0)) (match-end 0))
			     candidates)))
    candidates))