1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-12 13:33:57 +00:00

Merge remote-tracking branch 'upstream/master' into typed-array-work

This commit is contained in:
J.-F. Cap
2019-02-24 22:25:33 +01:00
6 changed files with 29 additions and 9 deletions

View File

@@ -32,6 +32,7 @@ static int is_whitespace(uint8_t c) {
|| c == '\n'
|| c == '\r'
|| c == '\0'
|| c == '\v'
|| c == '\f';
}
@@ -207,6 +208,8 @@ static int checkescape(uint8_t c) {
return '\0';
case 'f':
return '\f';
case 'v':
return '\v';
case 'e':
return 27;
case '"':