diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-01-04 07:19:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-01-04 07:19:10 +0000 |
commit | 2876b7d53a3fdd6645f8dea531fb9dad6ae33ed9 (patch) | |
tree | c1d25a4f928770d6ce44be4a930c9e250dc9371b /src/doc.c | |
parent | f9b0eaee8d18b37f4c08b93b7416c0a2b240f2b7 (diff) | |
download | emacs-2876b7d53a3fdd6645f8dea531fb9dad6ae33ed9.tar.gz |
(store_function_docstring): Arg is now EMACS_INT.
Diffstat (limited to 'src/doc.c')
-rw-r--r-- | src/doc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc.c b/src/doc.c index 67f91a4209f..d401fe73305 100644 --- a/src/doc.c +++ b/src/doc.c @@ -362,7 +362,8 @@ translation.") static void store_function_docstring (fun, offset) Lisp_Object fun; - int offset; + /* Use EMACS_INT because we get this from pointer subtraction. */ + EMACS_INT offset; { fun = indirect_function (fun); |