diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-18 23:34:43 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-18 23:34:43 -0700 |
commit | 2172544bcd6f38bc7c0888a148a6dc8a903314c0 (patch) | |
tree | ebbb7be8a76ac40bd72537cff5f70ac07aa48d0b /src/xfns.c | |
parent | e50d64ebfa2e0dbc563ba35cd048af77beacf000 (diff) | |
download | emacs-2172544bcd6f38bc7c0888a148a6dc8a903314c0.tar.gz |
* xfns.c (Fx_window_property): Simplify a bit,
to make a bit faster and to avoid GCC 4.6.0 warning.
* xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
Diffstat (limited to 'src/xfns.c')
-rw-r--r-- | src/xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c index 7a575150687..f3dc493ff85 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -4352,7 +4352,7 @@ no value of TYPE (always string in the MS Windows case). */) property and those are indeed in 32 bit quantities if format is 32. */ - if (actual_format == 32 && actual_format < BITS_PER_LONG) + if (32 < BITS_PER_LONG && actual_format == 32) { unsigned long i; int *idata = (int *) tmp_data; |