From 6acbb5e51203982bacfbeae8bc6e39230d9ca857 Mon Sep 17 00:00:00 2001
From: James Booth <boothj5@gmail.com>
Date: Mon, 4 Mar 2013 08:31:02 +0000
Subject: [PATCH] Added alt-backspace key code for ubuntu

---
 src/ui/inputwin.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c
index 47556476..9570a563 100644
--- a/src/ui/inputwin.c
+++ b/src/ui/inputwin.c
@@ -551,6 +551,7 @@ _handle_alt_key(char *input, int *size, int key)
         case '0':
             ui_switch_win(9);
             break;
+        case 263:
         case 127:
             input[*size] = '\0';
             gchar *curr_ch = g_utf8_offset_to_pointer(input, end_del);