diff options
| author | Kenichi Handa | 2003-02-24 04:50:59 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-02-24 04:50:59 +0000 |
| commit | cc4fe8d2d2e7dd0a3a003233a4d7623ebe7c9d2d (patch) | |
| tree | 4513ee5da943f699c55a71f481430d6e40f87fae /lisp/textmodes | |
| parent | b41ee674a895f7a3fb16d2a26858f1b16cb6e044 (diff) | |
| download | emacs-cc4fe8d2d2e7dd0a3a003233a4d7623ebe7c9d2d.tar.gz emacs-cc4fe8d2d2e7dd0a3a003233a4d7623ebe7c9d2d.zip | |
(sentence-end): Add Chinese and Japanese characters.
Diffstat (limited to 'lisp/textmodes')
| -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." | |||
| 137 | ;; This is a bit stupid since it's not auto-updated when the | 137 | ;; This is a bit stupid since it's not auto-updated when the |
| 138 | ;; other variables are changes, but it's still useful info. | 138 | ;; other variables are changes, but it's still useful info. |
| 139 | (concat (if sentence-end-without-period "\\w \\|") | 139 | (concat (if sentence-end-without-period "\\w \\|") |
| 140 | "[.?!][]\"')}]*" | 140 | "[.?!$B!#!%!)!*$A!##.#?#!$(0!$!%!)!*$(G!$!%!)!*(B][]\"')}]*" |
| 141 | (if sentence-end-double-space | 141 | (if sentence-end-double-space |
| 142 | "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)") | 142 | "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)") |
| 143 | "[ \t\n]*")) | 143 | "[ \t\n]*")) |
| @@ -457,4 +457,8 @@ ones already marked." | |||
| 457 | (interactive "*p") | 457 | (interactive "*p") |
| 458 | (transpose-subr 'forward-sentence arg)) | 458 | (transpose-subr 'forward-sentence arg)) |
| 459 | 459 | ||
| 460 | ;;; Local Variables: | ||
| 461 | ;;; coding: iso-2022-7bit | ||
| 462 | ;;; End: | ||
| 463 | |||
| 460 | ;;; paragraphs.el ends here | 464 | ;;; paragraphs.el ends here |