summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-04-29 01:46:19 +0430
committerAndreas Kling <kling@serenityos.org>2020-04-28 23:29:07 +0200
commit9473733d7aacf5fdde1bb608dbb5b6d23ad8506b (patch)
tree39585f8bb675c1d38efb5010d75ee20877b18c2a /Applications
parent7ecf29f206eb8e471a9efc77b3356f4881fd635c (diff)
downloadserenity-9473733d7aacf5fdde1bb608dbb5b6d23ad8506b.zip
LibLine: Handle initialize() internally
This patch makes initialize() transparent to the users, but exposes it publicly, as the users might need a copy of the default termios (i.e. Shell)
Diffstat (limited to 'Applications')
-rw-r--r--Applications/Debugger/main.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Applications/Debugger/main.cpp b/Applications/Debugger/main.cpp
index 52c1abd1e3..3a9fca85ba 100644
--- a/Applications/Debugger/main.cpp
+++ b/Applications/Debugger/main.cpp
@@ -186,8 +186,6 @@ int main(int argc, char** argv)
if (argc == 1)
return usage();
- editor.initialize();
-
StringBuilder command;
command.append(argv[1]);
for (int i = 2; i < argc; ++i) {