# HG changeset patch # User Stefan Monnier # Date 1130216178 0 # Node ID ee446efaafaf42690912ac6bf97fc7c8a1a9ea24 # Parent c5bb9ba4c1025bd69411fc13ff06de2d9d5ef00f (sentence-end-base): Use real chars, so as not to unnecessarily expose emacs-mule's internal char codes. diff -r c5bb9ba4c102 -r ee446efaafaf lisp/textmodes/paragraphs.el --- a/lisp/textmodes/paragraphs.el Tue Oct 25 03:49:15 2005 +0000 +++ b/lisp/textmodes/paragraphs.el Tue Oct 25 04:56:18 2005 +0000 @@ -159,7 +159,7 @@ :group 'paragraphs :type '(choice regexp (const :tag "Use default value" nil))) -(defcustom sentence-end-base "[.?!][]\"'\xd0c9\x5397d)}]*" +(defcustom sentence-end-base "[.?!][]\"'$B!I$,1r}(B)}]*" "*Regexp matching the basic end of a sentence, not including following space." :group 'paragraphs :type 'string @@ -502,9 +502,9 @@ (interactive "*p") (transpose-subr 'forward-sentence arg)) -;;; Local Variables: -;;; coding: iso-2022-7bit -;;; End: +;; Local Variables: +;; coding: iso-2022-7bit +;; End: -;;; arch-tag: e727eb1a-527a-4464-b9d7-9d3ec0d1a575 +;; arch-tag: e727eb1a-527a-4464-b9d7-9d3ec0d1a575 ;;; paragraphs.el ends here