emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r100738: * src/intervals.h (interval)


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100738: * src/intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
Date: Tue, 06 Jul 2010 20:09:30 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100738
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Tue 2010-07-06 20:09:30 -0700
message:
  * src/intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
modified:
  src/ChangeLog
  src/intervals.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-07-07 02:49:37 +0000
+++ b/src/ChangeLog     2010-07-07 03:09:30 +0000
@@ -1,5 +1,7 @@
 2010-07-07  Dan Nicolaescu  <address@hidden>
 
+       * 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.

=== modified file 'src/intervals.h'
--- a/src/intervals.h   2010-07-02 09:26:33 +0000
+++ b/src/intervals.h   2010-07-07 03:09:30 +0000
@@ -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


reply via email to

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