diff 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
line wrap: on
line diff
--- a/src/intervals.h	Tue Jul 06 20:04:31 2010 -0700
+++ b/src/intervals.h	Tue Jul 06 20:09:30 2010 -0700
@@ -28,8 +28,8 @@
 {
   /* 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