Uwe Brauer writes:
I tried
(quail-define-rules
("oei" ?œi)
or
("oeu" ?œ?u) )
But it does not work
The syntax of quail-define-rules is a bit baroque. Try
(quail-define-rules
("oei" "œi")
("oeu" "œu") )
I don't think this will work, instead you'll get prompted for ?œ OR
?i, not the string concatenating them. More likely to work is
(quail-define-rules
("oei" ["œi"])
("oeu" ["œu"]) )
HTH
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta