Mercurial > hg > xemacs-beta
comparison src/event-Xt.c @ 2837:c1ec282bb160
[xemacs-hg @ 2005-06-29 09:47:33 by crestani]
2005-06-28 Marcus Crestani <crestani@xemacs.org>
* console-x.c (x_perhaps_init_unseen_key_defaults): Use
build_intstring to avoid type error.
* event-Xt.c (x_keysym_to_emacs_keysym): Add cast to avoid type
error.
author | crestani |
---|---|
date | Wed, 29 Jun 2005 09:47:35 +0000 |
parents | a25c824ed558 |
children | ade0c13d91a3 |
comparison
equal
deleted
inserted
replaced
2836:c4bc66dfe66a | 2837:c1ec282bb160 |
---|---|
824 *iname = '-'; | 824 *iname = '-'; |
825 } | 825 } |
826 INC_IBYTEPTR(iname); | 826 INC_IBYTEPTR(iname); |
827 } | 827 } |
828 } | 828 } |
829 return KEYSYM (eidata(einame)); | 829 return KEYSYM ((const CIbyte *) eidata (einame)); |
830 } | 830 } |
831 } | 831 } |
832 | 832 |
833 static Lisp_Object | 833 static Lisp_Object |
834 x_to_emacs_keysym (XKeyPressedEvent *event, int simple_p) | 834 x_to_emacs_keysym (XKeyPressedEvent *event, int simple_p) |