(key-binding [2211] t)  -> self-insert-command
    (key-binding [342604] t)  -> self-insert-command
    or generically: (key-binding (vector (string-to-char "£")) t)  ->  
    self-insert-command
    (key-binding "£" t)  -> nil

    So, it seems to be a problem with the string specification of the key.

Oh, now I see it.  key-binding operates byte by byte, and does not
understand non-ASCII characters if they come from strings.
This is because codes above 0200 are treated
as meta-characters in these strings.


_______________________________________________
emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to