summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-01-04 07:19:10 +0000
committerRichard M. Stallman <rms@gnu.org>1995-01-04 07:19:10 +0000
commit2876b7d53a3fdd6645f8dea531fb9dad6ae33ed9 (patch)
treec1d25a4f928770d6ce44be4a930c9e250dc9371b
parentf9b0eaee8d18b37f4c08b93b7416c0a2b240f2b7 (diff)
downloademacs-2876b7d53a3fdd6645f8dea531fb9dad6ae33ed9.tar.gz
(store_function_docstring): Arg is now EMACS_INT.
-rw-r--r--src/doc.c3
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);