summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-10-31 04:50:13 +0000
committerJim Blandy <jimb@redhat.com>1992-10-31 04:50:13 +0000
commit5bc1518a3dcbc4c0ae470d7bf5f00d91e3e6f653 (patch)
tree05d17880c745fc506a75cda95c638881520247c4 /src/alloc.c
parent4458687ccf10b5df9051c15a3bd853414ba0ba1c (diff)
downloademacs-5bc1518a3dcbc4c0ae470d7bf5f00d91e3e6f653.tar.gz
emacs-5bc1518a3dcbc4c0ae470d7bf5f00d91e3e6f653.tar.bz2
emacs-5bc1518a3dcbc4c0ae470d7bf5f00d91e3e6f653.zip
* alloc.c (Frope_elt): Declare arguments to be Lisp_Objects.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c1
1 files changed, 1 insertions, 0 deletions
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);