# HG changeset patch # User Kenichi Handa # Date 1028811610 0 # Node ID fc96b539a43ccf8626ec00eb6a8a78096d69a22b # Parent 1b3cbec9baf0e4a93b2bc239813c246185528060 (next-word-boundary-han): Don't treat katakana following han characters as a part of a word. diff -r 1b3cbec9baf0 -r fc96b539a43c lisp/international/characters.el --- a/lisp/international/characters.el Thu Aug 08 12:59:44 2002 +0000 +++ b/lisp/international/characters.el Thu Aug 08 13:00:10 2002 +0000 @@ -961,7 +961,7 @@ (goto-char pos) (looking-at "\\cC+") (goto-char (match-end 0)) - (if (looking-at "\\cK+\\|\\cH+") + (if (looking-at "\\cH+") (goto-char (match-end 0))) (point)) (while (and (> pos limit)