summaryrefslogtreecommitdiff
path: root/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'types.c')
-rw-r--r--types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/types.c b/types.c
index f872b13..8888b9d 100644
--- a/types.c
+++ b/types.c
@@ -1564,7 +1564,7 @@ word x;
x=tl[x]; fprintf(f,","); }
out_pattern(f,hd[x]); fprintf(f,","); out_pattern(f,tl[x]);
fprintf(f,")"); } else
- if(tag[x]==INT&&neg(x)||tag[x]==DOUBLE&&get_dbl(x)<0)
+ if(tag[x]==INT&&big_is_negative(x)||tag[x]==DOUBLE&&get_dbl(x)<0)
{ fprintf(f,"("); out(f,x); fprintf(f,")"); } /* -ve numbers */
else
out(f,x); /* all other cases */