]> git.eshelyaron.com Git - emacs.git/commitdiff
(skkdic-get-candidate-list): Fix the regexp to search for candidates.
authorKenichi Handa <handa@m17n.org>
Sat, 16 Dec 2000 00:11:37 +0000 (00:11 +0000)
committerKenichi Handa <handa@m17n.org>
Sat, 16 Dec 2000 00:11:37 +0000 (00:11 +0000)
lisp/international/ja-dic-cnv.el

index 3b1eaebadb904559a64628f77e54c209a3e264e0..76e5a02ae52166151cf93cbd8f1c217e4eeea770 100644 (file)
 (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)))