Mercurial > emacs
changeset 34626:6e98a6e86b7f
(skkdic-get-candidate-list): Fix the regexp to search for candidates.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sat, 16 Dec 2000 00:11:37 +0000 |
parents | 5b401d1f68e7 |
children | 1da723d161f3 |
files | lisp/international/ja-dic-cnv.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)))