From: Stefan Monnier Date: Tue, 25 Oct 2005 04:56:18 +0000 (+0000) Subject: (sentence-end-base): Use real chars, so as X-Git-Tag: emacs-pretest-22.0.90~6307 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=75538b71d28c97b88b0f08de95bdf6a6daefa72d;p=emacs.git (sentence-end-base): Use real chars, so as not to unnecessarily expose emacs-mule's internal char codes. --- diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index 1ed43279c3d..b196001c799 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -159,7 +159,7 @@ to obtain the value of this variable." :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 @@ ones already marked." (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