Mercurial > hg > xemacs-beta
comparison src/input-method-xlib.c @ 4710:3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
<870180fe0910051206s13dca5c3j6303732e33c478f5@mail.gmail.com>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Mon, 05 Oct 2009 13:07:34 -0600 |
parents | 726060ee587c |
children | 0ca81354c4c7 |
comparison
equal
deleted
inserted
replaced
4709:db7068430402 | 4710:3a87551bfeb5 |
---|---|
893 describe_Window (Window win) | 893 describe_Window (Window win) |
894 { | 894 { |
895 char xwincmd[128]; | 895 char xwincmd[128]; |
896 sprintf (xwincmd, "xwininfo -id 0x%x >&2; xwininfo -events -id 0x%x >&2", | 896 sprintf (xwincmd, "xwininfo -id 0x%x >&2; xwininfo -events -id 0x%x >&2", |
897 (int) win, (int) win); | 897 (int) win, (int) win); |
898 system (xwincmd); | 898 if (system (xwincmd) == -1) |
899 stderr_out ("Unable to execute xwininfo\n"); | |
899 } | 900 } |
900 | 901 |
901 void | 902 void |
902 describe_XIC (XIC xic) | 903 describe_XIC (XIC xic) |
903 { | 904 { |