diff options
Diffstat (limited to 'sys/boot/common/interp.c')
-rw-r--r-- | sys/boot/common/interp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/interp.c b/sys/boot/common/interp.c index e6bb3cc..d53a7ee 100644 --- a/sys/boot/common/interp.c +++ b/sys/boot/common/interp.c @@ -219,7 +219,7 @@ include(const char *filename) #else flags = 0; /* Discard comments */ - if (input[0] == '#') + if (strncmp(input+strspn(input, " "), "\\ ", 2) == 0) continue; cp = input; /* Echo? */ |