Mercurial > emacs
changeset 8823:fdb7ba55f05c
(Fdocumentation): Use EMACS_INT.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 17 Sep 1994 00:29:03 +0000 |
parents | 33a3f424c8c3 |
children | 589f82d1bb32 |
files | src/doc.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/doc.c Sat Sep 17 00:28:47 1994 +0000 +++ b/src/doc.c Sat Sep 17 00:29:03 1994 +0000 @@ -125,10 +125,10 @@ { 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: