diff options
Diffstat (limited to 'src/pipe.c')
| -rw-r--r-- | src/pipe.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -38,7 +38,9 @@ void await_change(void) { break; } - if (isspace(chr)) { + // octal 201 is an unused ascii character, so it's safe to use as a + // delimiter + if (chr == '\201') { if (chr_on == 0) { i++; continue; |
