Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
04f7ec69
Commit
04f7ec69
authored
Mar 30, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fmod): Fix the final adjustment, when i2 < 0 and i1 == 0.
parent
75c70425
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/data.c
src/data.c
+1
-1
No files found.
src/data.c
View file @
04f7ec69
...
...
@@ -1951,7 +1951,7 @@ Both X and Y must be numbers or markers.")
i1
%=
i2
;
/* If the "remainder" comes out with the wrong sign, fix it. */
if
(
(
i1
<
0
)
!=
(
i2
<
0
)
)
if
(
i2
<
0
?
i1
>
0
:
i1
<
0
)
i1
+=
i2
;
XSETINT
(
val
,
i1
);
...
...
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