]> git.eshelyaron.com Git - emacs.git/commitdiff
* character.c (char_string): Remove unnecessary casts.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Jun 2011 00:36:44 +0000 (17:36 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Jun 2011 00:36:44 +0000 (17:36 -0700)
src/ChangeLog
src/character.c

index f8a4abd9ccef320f81e945617ab3e4cbc32cbeca..01068fea0be7b752f55ce13f7580302448f10555 100644 (file)
@@ -1,5 +1,6 @@
 2011-06-13  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * character.c (char_string): Remove unnecessary casts.
 
        Make sure a 64-bit char is never passed to CHAR_STRING.
        Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
index aae3e3c0de67c3f3bc6a18501d1ec397026e0d74..70c0637804bd4c7bd30108dcb6f06db86b210da5 100644 (file)
@@ -123,7 +123,7 @@ char_string (unsigned int c, unsigned char *p)
 
   if (c & CHAR_MODIFIER_MASK)
     {
-      c = (unsigned) char_resolve_modifier_mask ((int) c);
+      c = char_resolve_modifier_mask (c);
       /* If C still has any modifier bits, just ignore it.  */
       c &= ~CHAR_MODIFIER_MASK;
     }