In article <[EMAIL PROTECTED]>, "Drew Adams" <[EMAIL PROTECTED]> writes:

>     I now think that single-key-description should signal an
>     error for a generic character because it's not a key.

> Would it be possible for someone to let me know if this change gets made (or
> if the description returned for such pseudo-keys gets changed)? I will then
> adapt my code accordingly. Thx.

If you are going to modify your code, you should do a check
something like this before calling single-key-description:
  (map-keymap #'(lambda (event definition)
                  (if (and (integerp event) (generic-char-p event))
                      ;; do something reasonable for a
                      ;; generic character.
[...]

Then, your code should be free from the change of
single-key-description.

---
Kenichi Handa
[EMAIL PROTECTED]


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

Reply via email to