From 1df45374530428c400c5d8b1d87c9365f86b4138 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 16 Nov 1993 06:53:45 +0000 Subject: [PATCH] (nntp-encode-text): Insert a CR before the newline. --- lisp/nntp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/nntp.el b/lisp/nntp.el index c745c24f8c7..9ced03a4c53 100644 --- a/lisp/nntp.el +++ b/lisp/nntp.el @@ -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") )) -- 2.39.5