changeset 3675:f42eaf84478f

(cons_to_long): Declare top, bot as Lisp_Object.
author Richard M. Stallman <rms@gnu.org>
date Sat, 12 Jun 1993 07:20:30 +0000
parents cfa45731460e
children 5160a6967f80
files src/data.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/data.c	Sat Jun 12 07:19:39 1993 +0000
+++ b/src/data.c	Sat Jun 12 07:20:30 1993 +0000
@@ -1480,7 +1480,7 @@
 cons_to_long (c)
      Lisp_Object c;
 {
-  int top, bot;
+  Lisp_Object top, bot;
   if (INTEGERP (c))
     return XINT (c);
   top = XCONS (c)->car;