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
5260234d
Commit
5260234d
authored
May 04, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(arith_driver): Make accum and next EMACS_INTs.
(Fmod): i1 and i2 are EMACS_INT.
parent
1df90f8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/data.c
src/data.c
+3
-3
No files found.
src/data.c
View file @
5260234d
...
...
@@ -1707,8 +1707,8 @@ arith_driver (code, nargs, args)
{
register
Lisp_Object
val
;
register
int
argnum
;
register
int
accum
;
register
int
next
;
register
EMACS_INT
accum
;
register
EMACS_INT
next
;
switch
(
SWITCH_ENUM_CAST
(
code
))
{
...
...
@@ -1917,7 +1917,7 @@ Both X and Y must be numbers or markers.")
register
Lisp_Object
num1
,
num2
;
{
Lisp_Object
val
;
int
i1
,
i2
;
EMACS_INT
i1
,
i2
;
#ifdef LISP_FLOAT_TYPE
CHECK_NUMBER_OR_FLOAT_COERCE_MARKER
(
num1
,
0
);
...
...
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