summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-05-16 14:29:08 +0000
committerGerd Moellmann <gerd@gnu.org>2000-05-16 14:29:08 +0000
commit9ab8560dc21300b8d7fe5ce9aee37c2244f4642e (patch)
treef0faf3b1da277bb02e3811dddb127c09182e7084 /src/print.c
parent835c1b36270c9ede7766f220d0210ab67352bb3e (diff)
downloademacs-9ab8560dc21300b8d7fe5ce9aee37c2244f4642e.tar.gz
Use the term `invalid' instead of `illegal'.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c4
1 files changed, 2 insertions, 2 deletions
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)