about summary refs log tree commit diff stats
path: root/src/command/cmd_ac.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/cmd_ac.c')
-rw-r--r--src/command/cmd_ac.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command/cmd_ac.c b/src/command/cmd_ac.c
index d817b2ef..57576967 100644
--- a/src/command/cmd_ac.c
+++ b/src/command/cmd_ac.c
@@ -1063,6 +1063,7 @@ cmd_ac_init(void)
 
     mood_ac = autocomplete_new();
     autocomplete_add(mood_ac, "set");
+    autocomplete_add(mood_ac, "clean");
     mood_type_ac = autocomplete_new();
     autocomplete_add(mood_type_ac, "afraid");
     autocomplete_add(mood_type_ac, "amazed");
@@ -4243,7 +4244,7 @@ _mood_autocomplete(ProfWin* window, const char* const input, gboolean previous)
 {
     char* result = NULL;
 
-    result = autocomplete_param_with_ac(input, "/mood", status_ac, TRUE, previous);
+    result = autocomplete_param_with_ac(input, "/mood", mood_ac, TRUE, previous);
     if (result) {
         return result;
     }