diff options
author | Nico Weber <thakis@chromium.org> | 2020-08-06 14:29:18 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-06 20:37:39 +0200 |
commit | 3cc9e8ba41f428d486a7c8768d96b1376771e765 (patch) | |
tree | 1f61092c1fc0e8f97d10250a1c8fc458e69d9c81 /Shell/main.cpp | |
parent | 7f7dd3cf9c96483451655187fbc68768c39e7244 (diff) | |
download | serenity-3cc9e8ba41f428d486a7c8768d96b1376771e765.zip |
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.
Diffstat (limited to 'Shell/main.cpp')
-rw-r--r-- | Shell/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Shell/main.cpp b/Shell/main.cpp index 8434548e8d..6c279ba488 100644 --- a/Shell/main.cpp +++ b/Shell/main.cpp @@ -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(); |