1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00

Shell: Do not assume that stdin/stdout is a TTY

This closes #2989.
This commit is contained in:
AnotherTest 2020-08-05 10:00:01 +04:30 committed by Andreas Kling
parent 70eb7aa627
commit 7b15c85ff5
3 changed files with 15 additions and 5 deletions

View file

@ -218,6 +218,7 @@ private:
Vector<LocalFrame> m_local_frames;
HashMap<String, String> m_aliases;
bool m_is_interactive { true };
};
static constexpr bool is_word_character(char c)