diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-05-16 14:29:08 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-05-16 14:29:08 +0000 |
commit | 9ab8560dc21300b8d7fe5ce9aee37c2244f4642e (patch) | |
tree | f0faf3b1da277bb02e3811dddb127c09182e7084 /src/print.c | |
parent | 835c1b36270c9ede7766f220d0210ab67352bb3e (diff) | |
download | emacs-9ab8560dc21300b8d7fe5ce9aee37c2244f4642e.tar.gz |
Use the term `invalid' instead of `illegal'.
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 4 |
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) |