From 9ab8560dc21300b8d7fe5ce9aee37c2244f4642e Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 16 May 2000 14:29:08 +0000 Subject: Use the term `invalid' instead of `illegal'. --- src/print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/print.c') diff --git a/src/print.c b/src/print.c index 80a897fdb22..2379e9d4930 100644 --- a/src/print.c +++ b/src/print.c @@ -1490,7 +1490,7 @@ print_object (obj, printcharfun, escapeflag) int print_length, i; Lisp_Object halftail = obj; - /* Negative values of print-length are illegal in CL. + /* Negative values of print-length are invalid in CL. Treat them like nil, as CMUCL does. */ if (NATNUMP (Vprint_length)) print_length = XFASTINT (Vprint_length); @@ -1594,7 +1594,7 @@ print_object (obj, printcharfun, escapeflag) PRINTCHAR ('\"'); /* Don't print more characters than the specified maximum. - Negative values of print-length are illegal. Treat them + Negative values of print-length are invalid. Treat them like a print-length of nil. */ if (NATNUMP (Vprint_length) && XFASTINT (Vprint_length) < size_in_chars) -- cgit v1.2.1