diff options
| -rw-r--r-- | src/character.c | 5 |
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) 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; |
