# HG changeset patch # User Richard M. Stallman # Date 1085262818 0 # Node ID 077145cf42599ad4a2a0e61a3794067c55992532 # Parent 856dacc3ac484e8097945aa12993255178d08fe0 (sentence-end): Match unicode curly quotes as a close quote. diff -r 856dacc3ac48 -r 077145cf4259 lisp/textmodes/paragraphs.el --- a/lisp/textmodes/paragraphs.el Sat May 22 21:52:34 2004 +0000 +++ b/lisp/textmodes/paragraphs.el Sat May 22 21:53:38 2004 +0000 @@ -171,7 +171,7 @@ 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 "]+\\)"