Revert last change in bidi.c.

src/bidi.c (bidi_mirror_char): Revert last change: an int is
 definitely wide enough here.
This commit is contained in:
Eli Zaretskii 2012-05-26 10:03:39 +03:00
parent 34a008d93c
commit 4446092aff
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-05-26 Eli Zaretskii <eliz@gnu.org>
* bidi.c (bidi_mirror_char): Revert last change: an int is
definitely wide enough here.
2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
Fix integer width and related bugs (Bug#9874).

View file

@ -204,7 +204,7 @@ bidi_mirror_char (int c)
val = CHAR_TABLE_REF (bidi_mirror_table, c);
if (INTEGERP (val))
{
EMACS_INT v = XINT (val);
int v = XINT (val);
if (v < 0 || v > MAX_CHAR)
abort ();