about summary refs log tree commit diff stats
path: root/src/command.c
diff options
context:
space:
mode:
authorDmitry Podgorny <pasis.ua@gmail.com>2012-11-11 16:32:18 +0200
committerDmitry Podgorny <pasis.ua@gmail.com>2012-11-11 16:32:18 +0200
commitfb276338fa2237b369a12082c05b03ec9cf7cd87 (patch)
treeb70aedabcac1c0be0a4e6ccbe51e94921e803c27 /src/command.c
parentef64262f8be55000e344444e5fc6888f33705209 (diff)
downloadprofani-tty-fb276338fa2237b369a12082c05b03ec9cf7cd87.tar.gz
rename _cmd_reset_who_completer
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/command.c b/src/command.c
index 44c4a6f1..3f2f2e10 100644
--- a/src/command.c
+++ b/src/command.c
@@ -65,7 +65,7 @@ static gboolean _cmd_set_boolean_preference(const char * const inp,
 static char *_cmd_complete(char *inp);
 static void _cmd_reset_command_completer(void);
 static char *_cmd_who_complete(char *inp);
-static void _cmd_reset_who_completer(void);
+static void _cmd_who_reset_completer(void);
 static char *_cmd_help_complete(char *inp);
 static void _cmd_help_reset_completer(void);
 static char *_cmd_notify_complete(char *inp);
@@ -570,8 +570,8 @@ cmd_reset_autocomplete()
     _cmd_help_reset_completer();
     _cmd_notify_reset_completer();
     _cmd_sub_reset_completer();
+    _cmd_who_reset_completer();
     _cmd_reset_command_completer();
-    _cmd_reset_who_completer();
 }
 
 GSList *
@@ -671,7 +671,7 @@ _cmd_who_complete(char *inp)
 }
 
 static void
-_cmd_reset_who_completer(void)
+_cmd_who_reset_completer(void)
 {
     p_autocomplete_reset(who_ac);
 }