added tab as valid character when reading a batchfile
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1267
This commit is contained in:
parent
1786adb90b
commit
e195ea341e
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ emptyline:
|
|||
n=1;
|
||||
DOS_ReadFile(file_handle,&c,&n);
|
||||
if (n>0) {
|
||||
if (c>31 || c==0x1b)
|
||||
if (c>31 || c==0x1b || c=='\t')
|
||||
*cmd_write++=c;
|
||||
}
|
||||
} while (c!='\n' && n);
|
||||
|
|
Loading…
Add table
Reference in a new issue