diff options
author | Kenichi Handa <handa@m17n.org> | 2003-02-24 04:50:59 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-02-24 04:50:59 +0000 |
commit | cc4fe8d2d2e7dd0a3a003233a4d7623ebe7c9d2d (patch) | |
tree | 4513ee5da943f699c55a71f481430d6e40f87fae /lisp/textmodes/paragraphs.el | |
parent | b41ee674a895f7a3fb16d2a26858f1b16cb6e044 (diff) | |
download | emacs-cc4fe8d2d2e7dd0a3a003233a4d7623ebe7c9d2d.tar.gz emacs-cc4fe8d2d2e7dd0a3a003233a4d7623ebe7c9d2d.tar.bz2 emacs-cc4fe8d2d2e7dd0a3a003233a4d7623ebe7c9d2d.zip |
(sentence-end): Add Chinese and Japanese characters.
Diffstat (limited to 'lisp/textmodes/paragraphs.el')
-rw-r--r-- | lisp/textmodes/paragraphs.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index f1e486138cf..dfec0acfd46 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -137,7 +137,7 @@ without a period." ;; This is a bit stupid since it's not auto-updated when the ;; other variables are changes, but it's still useful info. (concat (if sentence-end-without-period "\\w \\|") - "[.?!][]\"')}]*" + "[.?!$B!#!%!)!*$A!##.#?#!$(0!$!%!)!*$(G!$!%!)!*(B][]\"')}]*" (if sentence-end-double-space "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)") "[ \t\n]*")) @@ -457,4 +457,8 @@ ones already marked." (interactive "*p") (transpose-subr 'forward-sentence arg)) +;;; Local Variables: +;;; coding: iso-2022-7bit +;;; End: + ;;; paragraphs.el ends here |