Mercurial > hg > xemacs-beta
comparison src/input-method-xlib.c @ 4123:5333f383efbd
[xemacs-hg @ 2007-08-17 08:04:25 by crestani]
2007-08-15 Marcus Crestani <crestani@xemacs.org>
* input-method-xlib.c (EmacsFreeXIMStyles):
* lisp.h:
* process-unix.c (connect_to_file_descriptor):
* process-unix.c (create_bidirectional_pipe):
* process-unix.c (unix_create_process):
* process-unix.c (unix_open_network_stream):
* process-unix.c (unix_open_multicast_group): Convert pointers to
EMACS_INTs instead of ints.
* vdb.c (Ftest_vdb): Print adresses as pointers.
author | crestani |
---|---|
date | Fri, 17 Aug 2007 08:04:28 +0000 |
parents | 6c7605dfcf07 |
children | 383ab474a241 |
comparison
equal
deleted
inserted
replaced
4122:8fea628c26fb | 4123:5333f383efbd |
---|---|
711 return; | 711 return; |
712 } | 712 } |
713 | 713 |
714 if (converter_data) | 714 if (converter_data) |
715 { | 715 { |
716 Boolean free_p = (Boolean) (int) converter_data; | 716 Boolean free_p = (Boolean) (EMACS_INT) converter_data; |
717 XIMStyles *styles = (XIMStyles *) toVal->addr; | 717 XIMStyles *styles = (XIMStyles *) toVal->addr; |
718 if (free_p) | 718 if (free_p) |
719 XFree ( styles->supported_styles ); | 719 XFree ( styles->supported_styles ); |
720 } | 720 } |
721 } | 721 } |