changeset 5742:7613e3de80b4

Fix stupid omission of cast to string.
author Stephen J. Turnbull <stephen@xemacs.org>
date Sat, 22 Jun 2013 00:28:39 +0900
parents 00a421d2b2ba
children 2257ac0e8a47
files lisp/ChangeLog lisp/paragraphs.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Jun 21 18:45:06 2013 +0900
+++ b/lisp/ChangeLog	Sat Jun 22 00:28:39 2013 +0900
@@ -1,3 +1,8 @@
+2013-06-22  Stephen J. Turnbull  <stephen@xemacs.org>
+
+	* paragraphs.el (sentence-end-base):
+	Fix stupid omission of cast to string.
+
 2013-06-21  Stephen J. Turnbull  <stephen@xemacs.org>
 
 	Fix no-Mule build.
--- a/lisp/paragraphs.el	Fri Jun 21 18:45:06 2013 +0900
+++ b/lisp/paragraphs.el	Sat Jun 22 00:28:39 2013 +0900
@@ -182,7 +182,7 @@
 
 (defcustom sentence-end-base
   (concat "[.?!][]\"'"
-	  (if (featurep 'mule) (unicode-to-char #x201D) "")
+	  (if (featurep 'mule) (string (unicode-to-char #x201D)) "")
 	  ")}]*")
   "Regexp matching the basic end of a sentence, not including following space."
   :group 'paragraphs