I want to bind [multi-key d h] to be eth, without relying on X being
present. (in 21.4)
I can't see how to do it. If I do the obvious thing:
(define-key compose-map "dh" (string (int-to-char #xF0)))
typing multi-key d h
results in "M-p not defined".
I don't understand why there's 8-bit/meta confusion here, or how to
stop it. (set-input-mode doesn't help - I've already set that not to
have 8bit meta.)
Then if I try something less obvious like
(define-key compose-map "dh" (lambda ()
(interactive)
(insert-char (int-to-char #xF0))))
it works in a terminal xemacs, but in an X xemacs, I get
a wrong-number-of-arguments error.
Right now I'm actually trying to get some real work done, so I'm hoping
someone can answer me before I have to read the source;-)
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta