comparison src/intervals.h @ 109156:32bdba8ef7f4

* src/intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
author Dan Nicolaescu <dann@ics.uci.edu>
date Tue, 06 Jul 2010 20:09:30 -0700
parents e16f43875a48
children 0fdd992ff057
comparison
equal deleted inserted replaced
109155:194249bde54b 109156:32bdba8ef7f4
26 26
27 struct interval 27 struct interval
28 { 28 {
29 /* The first group of entries deal with the tree structure. */ 29 /* The first group of entries deal with the tree structure. */
30 30
31 unsigned EMACS_INT total_length; /* Length of myself and both children. */ 31 EMACS_UINT total_length; /* Length of myself and both children. */
32 unsigned EMACS_INT position; /* Cache of interval's character position. */ 32 EMACS_UINT position; /* Cache of interval's character position. */
33 /* This field is usually updated 33 /* This field is usually updated
34 simultaneously with an interval 34 simultaneously with an interval
35 traversal, there is no guarantee 35 traversal, there is no guarantee
36 that it is valid for a random 36 that it is valid for a random
37 interval. */ 37 interval. */