Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
48fb6855
Commit
48fb6855
authored
Jul 06, 2010
by
Dan Nicolaescu
Browse files
* src/intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
parent
9715a0b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
src/ChangeLog
src/ChangeLog
+2
-0
src/intervals.h
src/intervals.h
+2
-2
No files found.
src/ChangeLog
View file @
48fb6855
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.
...
...
src/intervals.h
View file @
48fb6855
...
...
@@ -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_
U
INT
total_length
;
/* Length of myself and both children. */
EMACS_
U
INT
position
;
/* Cache of interval's character position. */
/* This field is usually updated
simultaneously with an interval
traversal, there is no guarantee
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment