summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-05-22 17:31:35 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-05-22 17:31:35 -0700
commitc11285dca1ee2896b487fe03408a4c7c356b6d5b (patch)
tree2a1bf07e0164ef9cf905516bb88f3bd80c2387fa /src/alloc.c
parentfdccd48e6df31841616ae7a2d98f187e8a0c403c (diff)
downloademacs-c11285dca1ee2896b487fe03408a4c7c356b6d5b.tar.gz
* alloc.c (make_event_array): Use XINT, not XUINT.
There's no need for unsigned here.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 71ab54bcab5..3f7bed571c7 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -3244,7 +3244,7 @@ make_event_array (register int nargs, Lisp_Object *args)
are characters that are in 0...127,
after discarding the meta bit and all the bits above it. */
if (!INTEGERP (args[i])
- || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200)
+ || (XINT (args[i]) & ~(-CHAR_META)) >= 0200)
return Fvector (nargs, args);
/* Since the loop exited, we know that all the things in it are