>>>> "SJT" == Stephen J Turnbull
<turnbull(a)sk.tsukuba.ac.jp> writes:
Hrvoje> If it works, it should also work with isearch and friends.
Alexey> No, it doesn't.
SJT> Bletch. Thanks for testing it.
Details (substitute actual characters instead of (0xFF) and (0xCA)):
(global-set-key 'Cyrillic_HARDSIGN 'self-insert-command)
(put 'Cyrillic_HARDSIGN 'ascii-character ?\xff)
===> ?(0xFF)
(get 'Cyrillic_HARDSIGN 'ascii-character)
===> ?(0xFF)
But when I try to type that character, it shows
(0xCA)
and after that:
(get 'Cyrillic_HARDSIGN 'ascii-character)
===> ?(0xCA)
setting it again with `put' yields the same results.
Code in src/events.c (`event-to-character') was effectively untouched
since 21.1.x.
--alexm