diff lisp/textmodes/paragraphs.el @ 49949:098ddf9714e8

(sentence-end): Add Chinese and Japanese characters.
author Kenichi Handa <handa@m17n.org>
date Mon, 24 Feb 2003 04:50:59 +0000
parents 5ade352e8d1c
children 7d324048f346
line wrap: on
line diff
--- a/lisp/textmodes/paragraphs.el	Mon Feb 24 04:50:33 2003 +0000
+++ b/lisp/textmodes/paragraphs.el	Mon Feb 24 04:50:59 2003 +0000
@@ -137,7 +137,7 @@
    ;; 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 @@
   (interactive "*p")
   (transpose-subr 'forward-sentence arg))
 
+;;; Local Variables:
+;;; coding: iso-2022-7bit
+;;; End:
+
 ;;; paragraphs.el ends here