diff lisp/paragraphs.el @ 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
line wrap: on
line diff
--- 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