aboutsummaryrefslogtreecommitdiffstats
path: root/src/casefiddle.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/casefiddle.c')
-rw-r--r--src/casefiddle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/casefiddle.c b/src/casefiddle.c
index 9f286d73a5e..1a0a62f273c 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -52,7 +52,7 @@ casify_object (enum case_action flag, Lisp_Object obj)
52 /* If the character has higher bits set 52 /* If the character has higher bits set
53 above the flags, return it unchanged. 53 above the flags, return it unchanged.
54 It is not a real character. */ 54 It is not a real character. */
55 if ((unsigned) XFASTINT (obj) > (unsigned) flagbits) 55 if (UNSIGNED_CMP (XFASTINT (obj), >, flagbits))
56 return obj; 56 return obj;
57 57
58 c1 = XFASTINT (obj) & ~flagbits; 58 c1 = XFASTINT (obj) & ~flagbits;