1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
This commit is contained in:
julianb0 2019-07-01 14:04:32 +02:00
parent 63aeda2878
commit b4f36ab137
No known key found for this signature in database
GPG Key ID: DDF8325C95299A62
2 changed files with 3 additions and 2 deletions

View File

@ -292,7 +292,7 @@ def parse_preproc(line):
for c in s:
# escape sequences
if c == '\\':
if not escaping and c == '\\':
escaping = True
continue

View File

@ -8,7 +8,7 @@ CMD.builtins.dir:
mov ax0, .dirmsg
call print
.dirmsg = " Directory of C:\\\n\n"
.dirmsg = "Directory of C:\\\n\n"
.first:
mov ax0, .buf
@ -119,3 +119,4 @@ CMD.builtins.dir:
.buf = [256]
.endstr1 = " %d file(s)\n"
.endstr2 = " 0 dir(s)\n"