about summary refs log tree commit diff stats
path: root/src/ui/inputwin.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-01-16 23:39:34 +0000
committerJames Booth <boothj5@gmail.com>2015-01-16 23:39:34 +0000
commit4ac11ddcd69a00fff6430e92d79f0e1e56430c77 (patch)
tree4421ffd5e655d3f3d861a545d0fd8d009685ab49 /src/ui/inputwin.c
parent18f05c59ee76a7df6de8eb0a2d933b97645b0e4d (diff)
parent036d13b80c77566309a22c97cb19bcd0ba022715 (diff)
downloadprofani-tty-4ac11ddcd69a00fff6430e92d79f0e1e56430c77.tar.gz
Merge branch 'master' into inp-utf8
Diffstat (limited to 'src/ui/inputwin.c')
-rw-r--r--src/ui/inputwin.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c
index f567b0a8..f9562473 100644
--- a/src/ui/inputwin.c
+++ b/src/ui/inputwin.c
@@ -573,14 +573,12 @@ _handle_edit(int key_type, const wint_t ch)
                 if ((strncmp(input, "/", 1) != 0) && (ui_current_win_type() == WIN_MUC)) {
                     char *result = muc_autocomplete(input);
                     if (result) {
-                        cons_debug("ac result = %s", result);
                         inp_replace_input(result);
                         free(result);
                     }
                 } else if (strncmp(input, "/", 1) == 0) {
                     char *result = cmd_autocomplete(input);
                     if (result) {
-                        cons_debug("ac result = %s", result);
                         inp_replace_input(result);
                         free(result);
                     }
@@ -802,4 +800,4 @@ _printable(const wint_t ch)
     bytes[utf_len] = '\0';
     gunichar unichar = g_utf8_get_char(bytes);
     return g_unichar_isprint(unichar) && (ch != KEY_MOUSE);
-}
\ No newline at end of file
+}