From f4fe72d542cac4978ce691b89a0fe2524515b274 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 9 Apr 1998 17:58:28 +0000 Subject: [PATCH] * print.c (print): Avoid `min'/`max' as variable names. --- src/print.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/print.c b/src/print.c index 69b1e28fea0..443b2f03a30 100644 --- a/src/print.c +++ b/src/print.c @@ -1370,10 +1370,10 @@ print (obj, printcharfun, escapeflag) PRINTCHAR ('('); { register int i = 0; - register int max = 0; + register int print_length = 0; if (INTEGERP (Vprint_length)) - max = XINT (Vprint_length); + print_length = XINT (Vprint_length); /* Could recognize circularities in cdrs here, but that would make printing of long lists quadratic. It's not worth doing. */ @@ -1381,7 +1381,7 @@ print (obj, printcharfun, escapeflag) { if (i++) PRINTCHAR (' '); - if (max && i > max) + if (print_length && i > print_length) { strout ("...", 3, 3, printcharfun, 0); break; -- 2.39.2