aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-10-25 04:56:18 +0000
committerStefan Monnier2005-10-25 04:56:18 +0000
commit75538b71d28c97b88b0f08de95bdf6a6daefa72d (patch)
tree200ac6848f1af1785b5b79db12eec2e7ee552ff9
parent6bc7646bdbc4f15fa0f8f4a5063b00cc75def977 (diff)
downloademacs-75538b71d28c97b88b0f08de95bdf6a6daefa72d.tar.gz
emacs-75538b71d28c97b88b0f08de95bdf6a6daefa72d.zip
(sentence-end-base): Use real chars, so as
not to unnecessarily expose emacs-mule's internal char codes.
-rw-r--r--lisp/textmodes/paragraphs.el10
1 files changed, 5 insertions, 5 deletions
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."
159 :group 'paragraphs 159 :group 'paragraphs
160 :type '(choice regexp (const :tag "Use default value" nil))) 160 :type '(choice regexp (const :tag "Use default value" nil)))
161 161
162(defcustom sentence-end-base "[.?!][]\"'\xd0c9\x5397d)}]*" 162(defcustom sentence-end-base "[.?!][]\"'$B!I$,1r}(B)}]*"
163 "*Regexp matching the basic end of a sentence, not including following space." 163 "*Regexp matching the basic end of a sentence, not including following space."
164 :group 'paragraphs 164 :group 'paragraphs
165 :type 'string 165 :type 'string
@@ -502,9 +502,9 @@ ones already marked."
502 (interactive "*p") 502 (interactive "*p")
503 (transpose-subr 'forward-sentence arg)) 503 (transpose-subr 'forward-sentence arg))
504 504
505;;; Local Variables: 505;; Local Variables:
506;;; coding: iso-2022-7bit 506;; coding: iso-2022-7bit
507;;; End: 507;; End:
508 508
509;;; arch-tag: e727eb1a-527a-4464-b9d7-9d3ec0d1a575 509;; arch-tag: e727eb1a-527a-4464-b9d7-9d3ec0d1a575
510;;; paragraphs.el ends here 510;;; paragraphs.el ends here