From: Richard M. Stallman Date: Tue, 16 Nov 1993 06:53:45 +0000 (+0000) Subject: (nntp-encode-text): Insert a CR before the newline. X-Git-Tag: emacs-19.34~10809 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1df45374530428c400c5d8b1d87c9365f86b4138;p=emacs.git (nntp-encode-text): Insert a CR before the newline. --- 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") ))