From 38d777a8f831a211a534ef4a68a0abee2529bd23 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Sat, 16 Dec 2000 00:11:37 +0000 Subject: [PATCH] (skkdic-get-candidate-list): Fix the regexp to search for candidates. --- lisp/international/ja-dic-cnv.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 2.39.2