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
5e37dc22
Commit
5e37dc22
authored
Jan 25, 2001
by
Gerd Moellmann
Browse files
(read_integer): Use type EMACS_INT instead of int.
parent
5ba7a870
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/lread.c
src/lread.c
+2
-1
No files found.
src/ChangeLog
View file @
5e37dc22
2001-01-25 Gerd Moellmann <gerd@gnu.org>
* lread.c (read_integer): Use type EMACS_INT instead of int.
2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
* ccl.c (ccl_driver): Fix last change.
...
...
src/lread.c
View file @
5e37dc22
...
...
@@ -1696,7 +1696,8 @@ read_integer (readcharfun, radix)
Lisp_Object
readcharfun
;
int
radix
;
{
int
number
=
0
,
ndigits
=
0
,
invalid_p
,
c
,
sign
=
0
;
int
ndigits
=
0
,
invalid_p
,
c
,
sign
=
0
;
EMACS_INT
number
=
0
;
if
(
radix
<
2
||
radix
>
36
)
invalid_p
=
1
;
...
...
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