aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-12 07:20:30 +0000
committerRichard M. Stallman1993-06-12 07:20:30 +0000
commit878a80cc1c6bb2eec111169ee0b9dd1f73eb24b2 (patch)
treedb66c524081ed63e5dbb3ab9cb7411a3486ea20f /src
parent98006242df8337523e2c5b7df02815b1407f03a0 (diff)
downloademacs-878a80cc1c6bb2eec111169ee0b9dd1f73eb24b2.tar.gz
emacs-878a80cc1c6bb2eec111169ee0b9dd1f73eb24b2.zip
(cons_to_long): Declare top, bot as Lisp_Object.
Diffstat (limited to 'src')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index d9c905a6b0e..1121cb38ce0 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1480,7 +1480,7 @@ unsigned long
1480cons_to_long (c) 1480cons_to_long (c)
1481 Lisp_Object c; 1481 Lisp_Object c;
1482{ 1482{
1483 int top, bot; 1483 Lisp_Object top, bot;
1484 if (INTEGERP (c)) 1484 if (INTEGERP (c))
1485 return XINT (c); 1485 return XINT (c);
1486 top = XCONS (c)->car; 1486 top = XCONS (c)->car;