1
0
Fork 0

Merge branch 'devel' of github.com:arangodb/arangodb into devel

This commit is contained in:
Michael Hackstein 2015-10-28 14:10:09 +01:00
commit 929835c7e4
1 changed files with 2 additions and 0 deletions

View File

@ -81,7 +81,9 @@ LinenoiseShell::LinenoiseShell (std::string const& history,
Completer* completer) Completer* completer)
: ShellBase(history, completer) { : ShellBase(history, completer) {
COMPLETER = completer; COMPLETER = completer;
#ifndef _WIN32
linenoiseSetMultiLine(1); linenoiseSetMultiLine(1);
#endif
linenoiseSetCompletionCallback(LinenoiseCompletionGenerator); linenoiseSetCompletionCallback(LinenoiseCompletionGenerator);
} }