about summary refs log tree commit diff stats
path: root/src/command
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-07-09 20:23:47 +0100
committerJames Booth <boothj5@gmail.com>2014-07-09 20:23:47 +0100
commit954661e59e7cfc994c93f08b5b9694286b00adc5 (patch)
tree62b83fd85f8b1277d7a4cc4991cb728702abe925 /src/command
parent0c9851106bfac4693920fa81633740dc85ae743a (diff)
downloadprofani-tty-954661e59e7cfc994c93f08b5b9694286b00adc5.tar.gz
Added quote param to autocomplete_complete
Diffstat (limited to 'src/command')
-rw-r--r--src/command/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 20e29795..8ac8a8c4 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -1272,7 +1272,7 @@ cmd_autocomplete(char *input, int *size)
             inp_cpy[i] = input[i];
         }
         inp_cpy[i] = '\0';
-        found = autocomplete_complete(commands_ac, inp_cpy);
+        found = autocomplete_complete(commands_ac, inp_cpy, TRUE);
         if (found != NULL) {
             char *auto_msg = strdup(found);
             ui_replace_input(input, auto_msg, size);