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
f0f787b8
Commit
f0f787b8
authored
Sep 17, 1994
by
Richard M. Stallman
Browse files
(Fdocumentation): Use EMACS_INT.
parent
81b328e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/doc.c
src/doc.c
+2
-2
No files found.
src/doc.c
View file @
f0f787b8
...
...
@@ -125,10 +125,10 @@ string is passed through `substitute-command-keys'.")
{
case
Lisp_Subr
:
if
(
XSUBR
(
fun
)
->
doc
==
0
)
return
Qnil
;
if
((
int
)
XSUBR
(
fun
)
->
doc
>=
0
)
if
((
EMACS_INT
)
XSUBR
(
fun
)
->
doc
>=
0
)
doc
=
build_string
(
XSUBR
(
fun
)
->
doc
);
else
doc
=
get_doc_string
(
-
(
int
)
XSUBR
(
fun
)
->
doc
);
doc
=
get_doc_string
(
-
(
EMACS_INT
)
XSUBR
(
fun
)
->
doc
);
break
;
case
Lisp_Compiled
:
...
...
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