(nntp-encode-text): Insert a CR before the newline.

This commit is contained in:
Richard M. Stallman 1993-11-16 06:53:45 +00:00
parent 8884bb82f1
commit 1df4537453

View file

@ -519,7 +519,7 @@ in the current news group."
(insert "."))
;; Insert `.' at end of buffer (end of text mark).
(goto-char (point-max))
(insert ".\n")
(insert ".\r\n")
))