# HG changeset patch # User Sadrul Habib Chowdhury # Date 1168306495 0 # Node ID 492f4e7416a3cb08cb23da1a8eeebafc21d4a289 # Parent 7a52dce840b453c23171c56b009353b5d1ac6d00 [gaim-migrate @ 18095] backspace wasn't working for Err. This makes it work again. I am not sure what was causing the problem in the first place. But it looks like having something to do with ncurses. committer: Tailor Script diff -r 7a52dce840b4 -r 492f4e7416a3 console/libgnt/gntentry.c --- a/console/libgnt/gntentry.c Tue Jan 09 00:29:45 2007 +0000 +++ b/console/libgnt/gntentry.c Tue Jan 09 01:34:55 2007 +0000 @@ -641,6 +641,7 @@ gnt_bindable_class_register_action(bindable, "delete-prev", backspace, GNT_KEY_BACKSPACE, NULL); gnt_bindable_register_binding(bindable, "delete-prev", s, NULL); + gnt_bindable_register_binding(bindable, "delete-prev", GNT_KEY_CTRL_H, NULL); gnt_bindable_class_register_action(bindable, "delete-next", delkey, GNT_KEY_DEL, NULL); gnt_bindable_register_binding(bindable, "delete-next", GNT_KEY_CTRL_D, NULL);