From: Kenichi Handa Date: Sat, 16 Dec 2000 00:11:37 +0000 (+0000) Subject: (skkdic-get-candidate-list): Fix the regexp to search for candidates. X-Git-Tag: emacs-pretest-21.0.95~471 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=38d777a8f831a211a534ef4a68a0abee2529bd23;p=emacs.git (skkdic-get-candidate-list): Fix the regexp to search for candidates. --- diff --git a/lisp/international/ja-dic-cnv.el b/lisp/international/ja-dic-cnv.el index 3b1eaebadb9..76e5a02ae52 100644 --- a/lisp/international/ja-dic-cnv.el +++ b/lisp/international/ja-dic-cnv.el @@ -197,7 +197,7 @@ (defun skkdic-get-candidate-list (from to) (let (candidates) (goto-char from) - (while (re-search-forward "/\\cj+" to t) + (while (re-search-forward "/[^/ \n]+" to t) (setq candidates (cons (buffer-substring (1+ (match-beginning 0)) (match-end 0)) candidates)))