From 5bc1518a3dcbc4c0ae470d7bf5f00d91e3e6f653 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 31 Oct 1992 04:50:13 +0000 Subject: [PATCH] * alloc.c (Frope_elt): Declare arguments to be Lisp_Objects. --- src/alloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/alloc.c b/src/alloc.c index c1703f777cc..66babab1ef8 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -925,6 +925,7 @@ DEFUN ("rope-elt", Frope_elt, Srope_elt, 2, 2, 0, A rope is a string in which each pair of bytes is considered an element.\n\ See variable `buffer-display-table' for the uses of ropes.") (r, n) + Lisp_Object r, n; { CHECK_STRING (r, 0); CHECK_NUMBER (n, 1);