1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-29 00:23:18 +00:00

Formfeed is whitespace.

This commit is contained in:
Calvin Rose 2018-03-18 14:38:40 -04:00
parent b41b24eb80
commit 105f5f3b2d

View File

@ -39,6 +39,7 @@ static int is_whitespace(uint8_t c) {
|| c == '\n' || c == '\n'
|| c == '\r' || c == '\r'
|| c == '\0' || c == '\0'
|| c == '\f'
|| c == ';' || c == ';'
|| c == ','; || c == ',';
} }