aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/character.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/character.c b/src/character.c
index bc99daf0df0..cf460540725 100644
--- a/src/character.c
+++ b/src/character.c
@@ -1043,11 +1043,6 @@ printablep (int c)
1043bool 1043bool
1044blankp (int c) 1044blankp (int c)
1045{ 1045{
1046 /* Fast path for ASCII characters that are always assumed to
1047 constitute horizontal whitespace. */
1048 if (c == ' ' || c == '\t')
1049 return true;
1050
1051 Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); 1046 Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c);
1052 if (! INTEGERP (category)) 1047 if (! INTEGERP (category))
1053 return false; 1048 return false;