summaryrefslogtreecommitdiff
path: root/Shell/main.cpp
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2020-08-06 14:29:18 -0400
committerAndreas Kling <kling@serenityos.org>2020-08-06 20:37:39 +0200
commit3cc9e8ba41f428d486a7c8768d96b1376771e765 (patch)
tree1f61092c1fc0e8f97d10250a1c8fc458e69d9c81 /Shell/main.cpp
parent7f7dd3cf9c96483451655187fbc68768c39e7244 (diff)
downloadserenity-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.cpp2
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();