Stephen -
On Fri, Jun 21, 2013 at 11:34 AM, Stephen J. Turnbull
<stephen(a)xemacs.org> wrote:
APPROVE COMMIT 21.5
Fix stupid omission of cast to string.
diff -r 00a421d2b2ba -r 7613e3de80b4 lisp/ChangeLog
--- 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(a)xemacs.org>
+
+ * paragraphs.el (sentence-end-base):
+ Fix stupid omission of cast to string.
+
2013-06-21 Stephen J. Turnbull <stephen(a)xemacs.org>
Fix no-Mule build.
diff -r 00a421d2b2ba -r 7613e3de80b4 lisp/paragraphs.el
--- 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
Did you commit this patch? It has not yet shown up at
bitbucket.org.
Thank you,
Vin
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches