Alexey Mahotkin <alexm(a)hsys.msk.ru> writes:
>>>>> "Hrvoje" == Hrvoje Niksic
<hniksic(a)arsdigita.com> writes:
>>>>> "SJT" == Stephen J Turnbull
<turnbull(a)sk.tsukuba.ac.jp> writes:
Hrvoje> Does this work:
Hrvoje> (global-set-key 'Cyrillic_HardSIGN 'self-insert-command)
Hrvoje> (put 'Cyrillic_HardSIGN 'ascii-value ?\xff)
Hrvoje> If it works, it should also work with isearch and friends.
No, it doesn't. 21.1 says
last typed character has no ASCII equivalent: #<keypress-event Cyrillic_HARDSIGN>
I made two mistakes: I misnamed the property, and my `put' line
contains a case mismatch. It should be:
(global-set-key 'Cyrillic_HARDSIGN 'self-insert-command)
(put 'Cyrillic_HARDSIGN 'ascii-character ?\xff)
21.1 should respect that. If 21.4 doesn't, it's a bug.