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

LibLine+Shell: Remove unused split_mechanism

It was only read in should_break_token(), which had no callers.
should_break_token() also got `foo\\ bar` and `"foo bar"` wrong.
This commit is contained in:
Nico Weber 2020-08-06 14:29:18 -04:00 committed by Andreas Kling
parent 7f7dd3cf9c
commit 3cc9e8ba41
3 changed files with 2 additions and 23 deletions

View file

@ -144,7 +144,7 @@ int main(int argc, char** argv)
}
#endif
editor = Line::Editor::construct(Line::Configuration { Line::Configuration::UnescapedSpaces });
editor = Line::Editor::construct(Line::Configuration {});
auto shell = Shell::construct();
s_shell = shell.ptr();