aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-09-17 00:29:03 +0000
committerRichard M. Stallman <[email protected]>1994-09-17 00:29:03 +0000
commitf0f787b8b8b2dc42e4331aa082fbc91aaeec9271 (patch)
treedf7e9310ba86aa350fdf62bc8016bd98907991e5 /src/doc.c
parent81b328e5d1bb14f1ab603ef4fb7ce88955b3dd51 (diff)
(Fdocumentation): Use EMACS_INT.
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc.c b/src/doc.c
index ae6f77ba7e..f8e1fd651d 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -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: