emacs-devel
[Top][All Lists]
Advanced

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

Latin-3 XKeysyms


From: Marko Rauhamaa
Subject: Latin-3 XKeysyms
Date: 10 Nov 2003 23:35:51 -0800

After many years of frustration I finally took the bull by the horns and
figured out why emacs 21.3 still ignores Latin-3 XKeysyms like
XK_Ccircumflex. In fact, here's a simple patch that fixes the problem:

========================================================================
--- src/keyboard.c.bak  2003-11-10 23:30:13.000000000 -0800
+++ src/keyboard.c      2003-11-10 23:29:52.000000000 -0800
@@ -4670,6 +4670,12 @@
       /* A function key.  The symbol may need to have modifier prefixes
         tacked onto it.  */
     case non_ascii_keystroke:
+      if (event->code >= 0x200 && event->code < 0x300) {
+        Lisp_Object lispy_c;
+
+        XSETFASTINT (lispy_c, event->code + 0x700);
+        return lispy_c;
+      }
       button_down_time = 0;
 
       for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
========================================================================

(I hearby donate the patch to the FSF. I created it on my own computer
in my home in California, where slave contracts are not enforceable. I
certify that no other party can possibly have any claim to the patch. In
fact, since those lines are an almost verbatim copy of a few lines
above, I shouldn't have any claim to it to begin with.)


Marko

-- 
Marko Rauhamaa      mailto:address@hidden     http://pacujo.net/marko/




reply via email to

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