]> git.eshelyaron.com Git - emacs.git/commitdiff
(sentence-end): Match unicode curly quotes as a close quote.
authorRichard M. Stallman <rms@gnu.org>
Sat, 22 May 2004 21:53:38 +0000 (21:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 22 May 2004 21:53:38 +0000 (21:53 +0000)
lisp/textmodes/paragraphs.el

index a86be8646c968704e89d2c1b16de0506168a8f90..1b2628760e136ab1e1b400aac8592f5cdffac71a 100644 (file)
@@ -171,7 +171,7 @@ followed by two spaces, unless it's inside some sort of quotes or
 parenthesis.  See Info node `Sentences'."
   (or sentence-end
       (concat (if sentence-end-without-period "\\w  \\|")
-              "\\([.?!][]\"')}]*"
+              "\\([.?!][]\"'\xd0c9)}]*"
               (if sentence-end-double-space
                   "\\($\\| $\\|\t\\|  \\)" "\\($\\|[\t ]\\)")
               "\\|[" sentence-end-without-space "]+\\)"