summaryrefslogtreecommitdiff
path: root/lisp/=nntp.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-11-16 06:53:45 +0000
committerRichard M. Stallman <rms@gnu.org>1993-11-16 06:53:45 +0000
commit4cf14e5345fde7af7d3aae8cf06de890a3e10196 (patch)
tree17bff9135baba04b6db3b38dd00b0f236ecd8a5c /lisp/=nntp.el
parente704b3cef93ce041e9c4eb8041190f826a7f6fdc (diff)
downloademacs-4cf14e5345fde7af7d3aae8cf06de890a3e10196.tar.gz
(nntp-encode-text): Insert a CR before the newline.
Diffstat (limited to 'lisp/=nntp.el')
-rw-r--r--lisp/=nntp.el2
1 files changed, 1 insertions, 1 deletions
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")
))