From 8fa3c3d35a86c05c62a1ba4ed15b8d10b0a71d62 Mon Sep 17 00:00:00 2001 From: Pimpest <82343504+Pimpest@users.noreply.github.com> Date: Fri, 6 Dec 2024 17:34:31 +0100 Subject: [PATCH] fixed eof not clearing on input --- src/cmd/cmd_base.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cmd/cmd_base.cpp b/src/cmd/cmd_base.cpp index 2446ea4..4019708 100644 --- a/src/cmd/cmd_base.cpp +++ b/src/cmd/cmd_base.cpp @@ -22,6 +22,7 @@ namespace fsh { else { run(in, out, args); } + in.clear(); } } \ No newline at end of file