aboutsummaryrefslogtreecommitdiffstats
path: root/src/intervals.h
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-06 20:09:30 -0700
committerDan Nicolaescu2010-07-06 20:09:30 -0700
commit48fb68553ba2d2bc657fee2b04b24acb77b6f028 (patch)
tree9354ee87f5c5e7185a0dbb99399ee03662a3cd86 /src/intervals.h
parent9715a0b909f38bcf322d697bcdf56f6744c9584d (diff)
downloademacs-48fb68553ba2d2bc657fee2b04b24acb77b6f028.tar.gz
emacs-48fb68553ba2d2bc657fee2b04b24acb77b6f028.zip
* src/intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
Diffstat (limited to 'src/intervals.h')
-rw-r--r--src/intervals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intervals.h b/src/intervals.h
index cdb24418587..612c1a99848 100644
--- a/src/intervals.h
+++ b/src/intervals.h
@@ -28,8 +28,8 @@ 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