diff options
| author | Richard M. Stallman | 2004-05-22 21:53:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-05-22 21:53:38 +0000 |
| commit | 668d1efc1cecf58e91700a71e6b097060faef386 (patch) | |
| tree | bb76d82d679750141e632559a10c30244280b3b5 /lisp/textmodes | |
| parent | e6d9ec82b74bd2b4e7a27f18c9ea44ec79d8892b (diff) | |
| download | emacs-668d1efc1cecf58e91700a71e6b097060faef386.tar.gz emacs-668d1efc1cecf58e91700a71e6b097060faef386.zip | |
(sentence-end): Match unicode curly quotes as a close quote.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/paragraphs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index a86be8646c9..1b2628760e1 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el | |||
| @@ -171,7 +171,7 @@ followed by two spaces, unless it's inside some sort of quotes or | |||
| 171 | parenthesis. See Info node `Sentences'." | 171 | parenthesis. See Info node `Sentences'." |
| 172 | (or sentence-end | 172 | (or sentence-end |
| 173 | (concat (if sentence-end-without-period "\\w \\|") | 173 | (concat (if sentence-end-without-period "\\w \\|") |
| 174 | "\\([.?!][]\"')}]*" | 174 | "\\([.?!][]\"'\xd0c9)}]*" |
| 175 | (if sentence-end-double-space | 175 | (if sentence-end-double-space |
| 176 | "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)") | 176 | "\\($\\| $\\|\t\\| \\)" "\\($\\|[\t ]\\)") |
| 177 | "\\|[" sentence-end-without-space "]+\\)" | 177 | "\\|[" sentence-end-without-space "]+\\)" |