From: ayin Date: Mon, 28 May 2007 18:38:02 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=5f2b97812a33f7e2f1fff57fe517c747650c4f42;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index fd45901e..23cdfa48 100644 --- a/Changes +++ b/Changes @@ -27,6 +27,8 @@ DUMB: support tex fonts - better option handling, support more than 30 options (exg). - add urgentOnBell resource to set the urgency hint (patch by Philip Paeps). + - add binding for backspace in iso14755 5.1 to remove the last + digit. 8.2 Sat Feb 17 21:35:28 CET 2007 - fix make depend in src/, reported by exg. diff --git a/src/command.C b/src/command.C index aacfd946..90afe29f 100644 --- a/src/command.C +++ b/src/command.C @@ -499,6 +499,14 @@ rxvt_term::key_press (XKeyEvent &ev) iso14755buf = ISO_14755_51; # if ISO_14755 iso14755_51 (0); +# endif + return; + } + else if (keysym == XK_BackSpace) + { + iso14755buf = ((iso14755buf & ISO_14755_MASK) >> 4) | ISO_14755_51; +# if ISO_14755 + iso14755_51 (iso14755buf & ISO_14755_MASK); # endif return; }