diff --git a/read.c b/read.c index 7940c86..1cf116c 100644 --- a/read.c +++ b/read.c @@ -164,6 +164,9 @@ static vString *readFileName (void) while (c != EOF && c != '\n' && (quoteDelimited ? (c != '"') : (c != ' ' && c != '\t'))) { + if (c == '\\') { + c = getc (File.fp); + } vStringPut (fileName, c); c = getc (File.fp); }