From 77da18040545963a99764c2d2a38f5f3cc20d3fe Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Tue, 30 Jul 2002 13:55:41 +0000 Subject: [PATCH] cd.. is upon us Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@105 --- src/shell/shell_cmds.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shell/shell_cmds.cpp b/src/shell/shell_cmds.cpp index c34624b9..c3869213 100644 --- a/src/shell/shell_cmds.cpp +++ b/src/shell/shell_cmds.cpp @@ -53,6 +53,7 @@ void DOS_Shell::DoCommand(char * line) { while (*line) { if (*line==32) break; if (*line=='/') break; + if (*line=='.') break; *cmd_write++=*line++; } *cmd_write=0;