diff options
Diffstat (limited to 'Source/Applications/Shell/Shell.class.cpp')
-rw-r--r-- | Source/Applications/Shell/Shell.class.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Applications/Shell/Shell.class.cpp b/Source/Applications/Shell/Shell.class.cpp index bfbf631..a2eb490 100644 --- a/Source/Applications/Shell/Shell.class.cpp +++ b/Source/Applications/Shell/Shell.class.cpp @@ -26,7 +26,7 @@ int Shell::run() { cwd = FS::cwdNode(); while (1) { outvt << "{" << cwd.getName() << "}: " << FLUSH; - String s = invt.readLine(); + String s = invt.get(); if (s.empty()) continue; while (s[0] == WChar(" ") or s[0] == WChar("\t")) { s = s.substr(1, s.size() - 1); |