]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 7 Jul 2010 03:09:30 +0000 (20:09 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 7 Jul 2010 03:09:30 +0000 (20:09 -0700)
src/ChangeLog
src/intervals.h

index 05b231fffa262b28376490561d67222bc6918d22..7f2f664cc07a06d1cec562214bd496573f17b23f 100644 (file)
@@ -1,5 +1,7 @@
 2010-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
+
        Make the function member of Lisp_Subr use standard C prototypes.
        * lisp.h (struct Lisp_Subr): Use a union for the function member.
        (DECL_ALIGN): Add a cast for the function.
index cdb24418587275db419774d90dc1c24484a3645b..612c1a9984846f519335a046a11f4a1cf0f86b8e 100644 (file)
@@ -28,8 +28,8 @@ struct interval
 {
   /* The first group of entries deal with the tree structure.  */
 
-  unsigned EMACS_INT total_length; /* Length of myself and both children.  */
-  unsigned EMACS_INT position; /* Cache of interval's character position.  */
+  EMACS_UINT total_length;      /* Length of myself and both children.  */
+  EMACS_UINT position;         /* Cache of interval's character position.  */
                                /* This field is usually updated
                                   simultaneously with an interval
                                   traversal, there is no guarantee