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
cf4138ad
Commit
cf4138ad
authored
Mar 30, 1994
by
Karl Heuer
Browse files
(EMACS_TIME_NEG_P): Cast to signed.
parent
ee61d94e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/systime.h
src/systime.h
+2
-2
No files found.
src/systime.h
View file @
cf4138ad
...
...
@@ -117,9 +117,9 @@ extern long timezone;
}
#define EMACS_TIME_NEG_P(time) \
((time).tv_sec < 0
\
((
long)(
time).tv_sec < 0 \
|| ((time).tv_sec == 0 \
&& (time).tv_usec < 0))
&&
(long)
(time).tv_usec < 0))
#else
/* ! defined (HAVE_TIMEVAL) */
...
...
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