From afaaa9188537b7651b7e42dfe3e9f340af819a0f Mon Sep 17 00:00:00 2001 From: Jan-Erik Rediger Date: Sun, 8 Jan 2017 18:27:00 +0100 Subject: [PATCH] Initialize help only in repl mode --- src/redis-cli.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/redis-cli.c b/src/redis-cli.c index ac435822..2a9dff71 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -1273,6 +1273,11 @@ static void repl(void) { int argc; sds *argv; + /* Initialize the help and, if possible, use the COMMAND command in order + * to retrieve missing entries. */ + cliInitHelp(); + cliIntegrateHelp(); + config.interactive = 1; linenoiseSetMultiLine(1); linenoiseSetCompletionCallback(completionCallback); @@ -2606,11 +2611,6 @@ int main(int argc, char **argv) { argc -= firstarg; argv += firstarg; - /* Initialize the help and, if possible, use the COMMAND command in order - * to retrieve missing entries. */ - cliInitHelp(); - cliIntegrateHelp(); - /* Latency mode */ if (config.latency_mode) { if (cliConnect(0) == REDIS_ERR) exit(1);