comparison src/doc.c @ 10330:240a2c88d439

(store_function_docstring): Arg is now EMACS_INT.
author Richard M. Stallman <rms@gnu.org>
date Wed, 04 Jan 1995 07:19:10 +0000
parents 4013c083162e
children a6e8525a1a9d
comparison
equal deleted inserted replaced
10329:aa393c4b380c 10330:240a2c88d439
360 /* Scanning the DOC files and placing docstring offsets into functions. */ 360 /* Scanning the DOC files and placing docstring offsets into functions. */
361 361
362 static void 362 static void
363 store_function_docstring (fun, offset) 363 store_function_docstring (fun, offset)
364 Lisp_Object fun; 364 Lisp_Object fun;
365 int offset; 365 /* Use EMACS_INT because we get this from pointer subtraction. */
366 EMACS_INT offset;
366 { 367 {
367 fun = indirect_function (fun); 368 fun = indirect_function (fun);
368 369
369 /* The type determines where the docstring is stored. */ 370 /* The type determines where the docstring is stored. */
370 371