Raymond Toy pushed to branch issue-327-fix-crlf-lf-eol at cmucl / cmucl
Commits:
-
3a25c685
by Raymond Toy at 2024-06-07T06:39:39-07:00
1 changed file:
Changes:
| ... | ... | @@ -530,9 +530,10 @@ |
| 530 | 530 | |
| 531 | 531 | (defsetf nn-last-read-message-number %set-nn-last-read-message-number)
|
| 532 | 532 | |
| 533 | -(defconstant nntp-eof ".
"
|
|
| 534 | - "NNTP marks the end of a textual response with this. NNTP also recognizes
|
|
| 535 | - this as the end of a post.")
|
|
| 533 | +(defconstant nntp-eof
|
|
| 534 | + (coerce '(#\. #\return) 'string)
|
|
| 535 | + "NNTP marks the end of a textual response with this. NNTP also
|
|
| 536 | + recognizes this as the end of a post.")
|
|
| 536 | 537 | |
| 537 | 538 | ;;; This macro binds a variable to each successive line of input from NNTP
|
| 538 | 539 | ;;; and exits when it sees the NNTP end-of-file-marker, a period by itself on
|