summaryrefslogtreecommitdiff
path: root/Shell
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-08-17 19:13:52 +0430
committerAndreas Kling <kling@serenityos.org>2020-08-18 12:07:32 +0200
commitd0aab41628719e0979cc916e136bd3f37e41435d (patch)
treef1ee8cca66ce1f6698e454ae57febc783d213b32 /Shell
parentafbeb8f977ba5c009e88f702242bba678486480f (diff)
downloadserenity-d0aab41628719e0979cc916e136bd3f37e41435d.zip
LibLine: Read configuration from a config file
Diffstat (limited to 'Shell')
-rw-r--r--Shell/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Shell/main.cpp b/Shell/main.cpp
index b50c250ef5..f8671a9fb8 100644
--- a/Shell/main.cpp
+++ b/Shell/main.cpp
@@ -176,7 +176,7 @@ int main(int argc, char** argv)
}
#endif
- editor = Line::Editor::construct(Line::Configuration {});
+ editor = Line::Editor::construct();
auto shell = Shell::construct();
s_shell = shell.ptr();