From: Eli Zaretskii Date: Sat, 26 May 2012 07:03:39 +0000 (+0300) Subject: Revert last change in bidi.c. X-Git-Tag: emacs-24.2.90~471^2~6^2~102 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4446092afffb588fec435785b9c7bfa4acac20d1;p=emacs.git Revert last change in bidi.c. src/bidi.c (bidi_mirror_char): Revert last change: an int is definitely wide enough here. --- diff --git a/src/ChangeLog b/src/ChangeLog index cd058207ed8..acae070f068 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-05-26 Eli Zaretskii + + * bidi.c (bidi_mirror_char): Revert last change: an int is + definitely wide enough here. + 2012-05-25 Paul Eggert Fix integer width and related bugs (Bug#9874). diff --git a/src/bidi.c b/src/bidi.c index 6c9dcd2a2b9..efed9dd6cd2 100644 --- a/src/bidi.c +++ b/src/bidi.c @@ -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 ();