diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-08-17 19:13:52 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-18 12:07:32 +0200 |
commit | d0aab41628719e0979cc916e136bd3f37e41435d (patch) | |
tree | f1ee8cca66ce1f6698e454ae57febc783d213b32 /Shell | |
parent | afbeb8f977ba5c009e88f702242bba678486480f (diff) | |
download | serenity-d0aab41628719e0979cc916e136bd3f37e41435d.zip |
LibLine: Read configuration from a config file
Diffstat (limited to 'Shell')
-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 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(); |