# HG changeset patch # User Kenichi Handa # Date 976925497 0 # Node ID 6e98a6e86b7f003840c3440fc8c825605d2ad028 # Parent 5b401d1f68e715beff8e138563c7f29efbcd1ff5 (skkdic-get-candidate-list): Fix the regexp to search for candidates. diff -r 5b401d1f68e7 -r 6e98a6e86b7f lisp/international/ja-dic-cnv.el --- a/lisp/international/ja-dic-cnv.el Fri Dec 15 22:03:05 2000 +0000 +++ b/lisp/international/ja-dic-cnv.el Sat Dec 16 00:11:37 2000 +0000 @@ -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)))