# HG changeset patch # User Stephen J. Turnbull # Date 1371828519 -32400 # Node ID 7613e3de80b42da8b64802fed0bfd77253ece366 # Parent 00a421d2b2ba037982b0eb7b557225abc9b6c4ae 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 + + * paragraphs.el (sentence-end-base): + Fix stupid omission of cast to string. + 2013-06-21 Stephen J. Turnbull 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