]> git.eshelyaron.com Git - emacs.git/commitdiff
Add support for Unicode whitespace in [:blank:]
authorPhilipp Stephani <phst@google.com>
Fri, 6 Jan 2017 14:56:51 +0000 (15:56 +0100)
committerPhilipp Stephani <phst@google.com>
Fri, 6 Jan 2017 19:12:48 +0000 (20:12 +0100)
See Bug#25366.

* src/character.c (blankp): New function for checking Unicode
horizontal whitespace.
* src/regex.c (ISBLANK): Use 'blankp' for non-ASCII horizontal
whitespace.
(BIT_BLANK): New bit for range table.
(re_wctype_to_bit, execute_charset): Use it.
* test/lisp/subr-tests.el (subr-tests--string-match-p--blank): Add
unit test for [:blank:] character class.
* test/src/regex-tests.el (test): Adapt unit test.
* doc/lispref/searching.texi (Char Classes): Document new Unicode
behavior for [:blank:].

doc/lispref/searching.texi
etc/NEWS
src/character.c
src/character.h
src/regex.c
test/lisp/subr-tests.el
test/src/regex-tests.el

index b011d14ee35e0f5fa2438192716e07a01eb021ba..67d4c22464774bd6a0e14418afa317f04d910c7b 100644 (file)
@@ -553,7 +553,11 @@ characters whose Unicode @samp{general-category} property
 (@pxref{Character Properties}) indicates they are alphabetic
 characters.
 @item [:blank:]
-This matches space and tab only.
+This matches horizontal whitespace, as defined by Annex C of the
+Unicode Technical Standard #18.  In particular, it matches spaces,
+tabs, and other characters whose Unicode @samp{general-category}
+property (@pxref{Character Properties}) indicates they are spacing
+separators.
 @item [:cntrl:]
 This matches any @acronym{ASCII} control character.
 @item [:digit:]
index d91204b21b432a2555395d03a5b47df4c431c05f..051b97e146a959823fa5f426dd3de4bdb218ce74 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -710,6 +710,12 @@ of curved quotes in format arguments to functions like 'message' and
 now generate less chatter and more-compact diagnostics.  The auxiliary
 function 'check-declare-errmsg' has been removed.
 
++++
+** The regular expression character class [:blank:] now matches
+Unicode horizontal whitespace as defined in the Unicode Technical
+Standard #18.  If you only want to match space and tab, use [ \t]
+instead.
+
 \f
 * Lisp Changes in Emacs 26.1
 
index b594af040c1a63dd4b17694c1aa004ffaaa1219b..bc99daf0df0059f3c6768a1f310f10405207828e 100644 (file)
@@ -1038,6 +1038,23 @@ printablep (int c)
            || gen_cat == UNICODE_CATEGORY_Cn)); /* unassigned */
 }
 
+/* Return true if C is a horizontal whitespace character, as defined
+   by http://www.unicode.org/reports/tr18/tr18-19.html#blank.  */
+bool
+blankp (int c)
+{
+  /* Fast path for ASCII characters that are always assumed to
+     constitute horizontal whitespace.  */
+  if (c == ' ' || c == '\t')
+    return true;
+
+  Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c);
+  if (! INTEGERP (category))
+    return false;
+
+  return XINT (category) == UNICODE_CATEGORY_Zs; /* separator, space */
+}
+
 void
 syms_of_character (void)
 {
index fc8a0dd74d2cea6ff8137447163ed5554a025fbd..62d252e91ba3600b9232729d2a812539f0adcd2d 100644 (file)
@@ -680,6 +680,7 @@ extern bool alphabeticp (int);
 extern bool alphanumericp (int);
 extern bool graphicp (int);
 extern bool printablep (int);
+extern bool blankp (int);
 
 /* Return a translation table of id number ID.  */
 #define GET_TRANSLATION_TABLE(id) \
index ae3fde80c9e92374f76a7d48a15eca2b4c57030b..7e70c494f471b78f7d31a190fc1df49d5245d309 100644 (file)
@@ -310,11 +310,12 @@ enum syntaxcode { Swhitespace = 0, Sword = 1, Ssymbol = 2 };
                     || ((c) >= 'a' && (c) <= 'f')      \
                     || ((c) >= 'A' && (c) <= 'F'))
 
-/* This is only used for single-byte characters.  */
-# define ISBLANK(c) ((c) == ' ' || (c) == '\t')
-
 /* The rest must handle multibyte characters.  */
 
+# define ISBLANK(c) (IS_REAL_ASCII (c)                  \
+                     ? ((c) == ' ' || (c) == '\t')      \
+                     : blankp (c))
+
 # define ISGRAPH(c) (SINGLE_BYTE_CHAR_P (c)                            \
                     ? (c) > ' ' && !((c) >= 0177 && (c) <= 0240)       \
                     : graphicp (c))
@@ -1790,6 +1791,7 @@ struct range_table_work_area
 #define BIT_ALNUM      0x80
 #define BIT_GRAPH      0x100
 #define BIT_PRINT      0x200
+#define BIT_BLANK       0x400
 \f
 
 /* Set the bit for character C in a list.  */
@@ -2066,8 +2068,9 @@ re_wctype_to_bit (re_wctype_t cc)
     case RECC_SPACE: return BIT_SPACE;
     case RECC_GRAPH: return BIT_GRAPH;
     case RECC_PRINT: return BIT_PRINT;
+    case RECC_BLANK: return BIT_BLANK;
     case RECC_ASCII: case RECC_DIGIT: case RECC_XDIGIT: case RECC_CNTRL:
-    case RECC_BLANK: case RECC_UNIBYTE: case RECC_ERROR: return 0;
+    case RECC_UNIBYTE: case RECC_ERROR: return 0;
     default:
       abort ();
     }
@@ -4658,6 +4661,7 @@ execute_charset (const_re_char **pp, unsigned c, unsigned corig, bool unibyte)
          (class_bits & BIT_ALNUM && ISALNUM (c)) ||
          (class_bits & BIT_ALPHA && ISALPHA (c)) ||
          (class_bits & BIT_SPACE && ISSPACE (c)) ||
+          (class_bits & BIT_BLANK && ISBLANK (c)) ||
          (class_bits & BIT_WORD  && ISWORD  (c)) ||
          ((class_bits & BIT_UPPER) &&
           (ISUPPER (c) || (corig != c &&
index 3c5dbcdbd767885dac00fbd3db6d1ca5fd850f89..a3b08e969713d6a5cb516a4df6e19a735cc96488 100644 (file)
@@ -271,5 +271,15 @@ indirectly `mapbacktrace'."
   (let ((frame-lists (subr-test--frames-1 'subr-test--frames-2)))
     (should (equal (car frame-lists) (cdr frame-lists)))))
 
+(ert-deftest subr-tests--string-match-p--blank ()
+  "Test that [:blank:] matches horizontal whitespace, cf. Bug#25366."
+  (should (equal (string-match-p "\\`[[:blank:]]\\'" " ") 0))
+  (should (equal (string-match-p "\\`[[:blank:]]\\'" "\t") 0))
+  (should-not (string-match-p "\\`[[:blank:]]\\'" "\n"))
+  (should-not (string-match-p "\\`[[:blank:]]\\'" "a"))
+  (should (equal (string-match-p "\\`[[:blank:]]\\'" "\N{HAIR SPACE}") 0))
+  (should (equal (string-match-p "\\`[[:blank:]]\\'" "\u3000") 0))
+  (should-not (string-match-p "\\`[[:blank:]]\\'" "\N{LINE SEPARATOR}")))
+
 (provide 'subr-tests)
 ;;; subr-tests.el ends here
index 74c27111cfefa942923f80524252edac8a918757..db187fd4a6a8db760dab2eb08c6a3c6c6328c0fe 100644 (file)
@@ -80,7 +80,7 @@ character) must match a string \"\u2420\"."
                 ("print" "abcłąka\u2620-, " "\t\n\1")
 
                 ("space" " \t\n\u2001" "abcABCł0123")
-                ("blank" " \t" "\n\u2001")
+                ("blank" " \t\u2001" "\n")
 
                 ("ascii" "abcABC012 \t\n\1" "łą\u2620")
                 ("nonascii" "łą\u2622" "abcABC012 \t\n\1")