diff options
| author | Richard M. Stallman | 1993-06-12 07:20:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-12 07:20:30 +0000 |
| commit | 878a80cc1c6bb2eec111169ee0b9dd1f73eb24b2 (patch) | |
| tree | db66c524081ed63e5dbb3ab9cb7411a3486ea20f /src/data.c | |
| parent | 98006242df8337523e2c5b7df02815b1407f03a0 (diff) | |
| download | emacs-878a80cc1c6bb2eec111169ee0b9dd1f73eb24b2.tar.gz emacs-878a80cc1c6bb2eec111169ee0b9dd1f73eb24b2.zip | |
(cons_to_long): Declare top, bot as Lisp_Object.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
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 | |||
| 1480 | cons_to_long (c) | 1480 | cons_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; |