qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] qemacs haiku.cpp


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs haiku.cpp
Date: Thu, 09 Jan 2014 12:25:13 +0000

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        14/01/09 12:25:13

Modified files:
        .              : haiku.cpp 

Log message:
        fix backspace key for haiku by Francois Revol

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/haiku.cpp?cvsroot=qemacs&r1=1.4&r2=1.5

Patches:
Index: haiku.cpp
===================================================================
RCS file: /sources/qemacs/qemacs/haiku.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- haiku.cpp   19 Dec 2013 00:41:22 -0000      1.4
+++ haiku.cpp   9 Jan 2014 12:25:12 -0000       1.5
@@ -531,9 +531,9 @@
                     byte = (char)raw_char;
                 switch (byte) {
                 case B_BACKSPACE:
-                    key = KEY_BS;
+                    key = KEY_DEL;
                     if (meta)
-                        key = KEY_META(KEY_BS);
+                        key = KEY_META(KEY_DEL);
                     break;
                 case B_TAB:
                     key = KEY_TAB;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]