emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101587: Fix int/EMACS_INT in bidi.c.


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101587: Fix int/EMACS_INT in bidi.c.
Date: Fri, 24 Sep 2010 08:05:24 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101587
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2010-09-24 08:05:24 -0400
message:
  Fix int/EMACS_INT in bidi.c.
  
   dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer positions.
modified:
  src/ChangeLog
  src/dispextern.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-09-24 11:55:44 +0000
+++ b/src/ChangeLog     2010-09-24 12:05:24 +0000
@@ -1,5 +1,8 @@
 2010-09-24  Eli Zaretskii  <address@hidden>
 
+       * 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)

=== modified file 'src/dispextern.h'
--- a/src/dispextern.h  2010-09-18 11:59:53 +0000
+++ b/src/dispextern.h  2010-09-24 12:05:24 +0000
@@ -1770,7 +1770,7 @@
 /* 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 */


reply via email to

[Prev in Thread] Current Thread [Next in Thread]