From fb256e96ec057b0dbfbe9d99d379b77b5422b776 Mon Sep 17 00:00:00 2001 From: "Michael R. Blair" Date: Mon, 5 Jun 2006 17:57:43 +0000 Subject: [PATCH] Just shoot me now. FIXNUMs should continue to appear as signed data. --- v7/src/microcode/ppband.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/ppband.c b/v7/src/microcode/ppband.c index 6fc254483..ff7211894 100644 --- a/v7/src/microcode/ppband.c +++ b/v7/src/microcode/ppband.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: ppband.c,v 9.62 2006/06/05 17:28:10 ihtfisp Exp $ +$Id: ppband.c,v 9.63 2006/06/05 17:57:43 ihtfisp Exp $ Copyright (c) 1987-2006 Massachusetts Institute of Technology @@ -449,7 +449,7 @@ DEFUN (Display, (Location, Type, The_Datum), case TC_FIXNUM: PRINT_OBJECT ("FIXNUM", The_Datum); - Points_To = (FIXNUM_TO_ULONG ((MAKE_OBJECT (Type, The_Datum)))); + Points_To = (FIXNUM_TO_LONG ((MAKE_OBJECT (Type, The_Datum)))); printf (" = %ld\n", ((signed long) Points_To)); return; -- 2.25.1