Commit bc86d88e authored by antirez's avatar antirez
Browse files

redis-cli prompt is now redis>

parent e9409273
...@@ -457,7 +457,7 @@ static void repl() { ...@@ -457,7 +457,7 @@ static void repl() {
char *line; char *line;
char **ap, *args[max]; char **ap, *args[max];
while((line = linenoise(">> ")) != NULL) { while((line = linenoise("redis> ")) != NULL) {
if (line[0] != '\0') { if (line[0] != '\0') {
linenoiseHistoryAdd(line); linenoiseHistoryAdd(line);
argc = 0; argc = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment