From e195ea341e5c8e08b9139dc43f846f0bdfcafe76 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Wed, 24 Sep 2003 19:37:14 +0000 Subject: [PATCH] added tab as valid character when reading a batchfile Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1267 --- src/shell/shell_batch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/shell_batch.cpp b/src/shell/shell_batch.cpp index 2c256483..c927e889 100644 --- a/src/shell/shell_batch.cpp +++ b/src/shell/shell_batch.cpp @@ -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);