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:
parent
34a008d93c
commit
4446092aff
2 changed files with 6 additions and 1 deletions
|
@ -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).
|
||||
|
|
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Reference in a new issue