summaryrefslogtreecommitdiff
path: root/src/gui/curses/gui-input.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2005-07-17 00:15:48 +0000
committerSebastien Helleu <flashcode@flashtux.org>2005-07-17 00:15:48 +0000
commitf3390da5e3a0ee9fc94d8f80212e80da18150a2f (patch)
treeaaf24ce81efde0849fa20f421b011bbe6d09d706 /src/gui/curses/gui-input.c
parenteeff957278abca93aef38d7d762965ff07b41855 (diff)
downloadweechat-f3390da5e3a0ee9fc94d8f80212e80da18150a2f.zip
Previous behaviour restored for key "^" (now inserted in buffer)
Diffstat (limited to 'src/gui/curses/gui-input.c')
-rw-r--r--src/gui/curses/gui-input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/curses/gui-input.c b/src/gui/curses/gui-input.c
index 8aeb5c65a..e290f9f42 100644
--- a/src/gui/curses/gui-input.c
+++ b/src/gui/curses/gui-input.c
@@ -214,11 +214,11 @@ gui_input_read ()
}
}
- /*if (strcmp (key_str, "^") == 0)
+ if (strcmp (key_str, "^") == 0)
{
key_str[1] = '^';
key_str[2] = '\0';
- }*/
+ }
/*gui_printf (gui_current_window->buffer, "gui_input_read: key = %s (%d)\n", key_str, key);*/