]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix int/EMACS_INT in bidi.c.
authorEli Zaretskii <eliz@gnu.org>
Fri, 24 Sep 2010 12:05:24 +0000 (08:05 -0400)
committerEli Zaretskii <eliz@gnu.org>
Fri, 24 Sep 2010 12:05:24 +0000 (08:05 -0400)
 dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer positions.

src/ChangeLog
src/dispextern.h

index 47cc7a76d25a24d4cf7b4dd241bbc59553f3f0e6..c0ea0e49819a30451786d6dc3b7829f679450c3d 100644 (file)
@@ -1,5 +1,8 @@
 2010-09-24  Eli Zaretskii  <eliz@gnu.org>
 
+       * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
+       positions.
+
        * fns.c (Fcompare_strings, Fstring_lessp, concat)
        (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
        (Fsubstring_no_properties, substring_both, Ffillarray)
index 6fd92ba940d54890daa93e0ada04ec12698e58c5..e4c13b58ce4ad0f34a3d8aedbfc935c55c86abda 100644 (file)
@@ -1770,7 +1770,7 @@ typedef enum { NEUTRAL_DIR, L2R, R2L } bidi_dir_t;
 /* Data type for storing information about characters we need to
    remember.  */
 struct bidi_saved_info {
-  int bytepos, charpos;                /* character's buffer position */
+  EMACS_INT bytepos, charpos;  /* character's buffer position */
   bidi_type_t type;            /* character's resolved bidi type */
   bidi_type_t type_after_w1;   /* original type of the character, after W1 */
   bidi_type_t orig_type;       /* type as we found it in the buffer */