Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
45926d06
Commit
45926d06
authored
Aug 13, 1998
by
Richard M. Stallman
Browse files
(nntp-encode-text): Properly encode outgoing text by
putting CR at the end of all lines.
parent
06cab6db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lisp/gnus/nntp.el
lisp/gnus/nntp.el
+6
-1
No files found.
lisp/gnus/nntp.el
View file @
45926d06
...
...
@@ -906,7 +906,12 @@ This function is supposed to be called from `nntp-server-opened-hook'."
(
insert
"\n"
))
;; Insert `.' at end of buffer (end of text mark).
(
goto-char
(
point-max
))
(
insert
"."
nntp-end-of-line
)))
(
insert
".\n"
)
(
goto-char
(
point-min
))
(
while
(
not
(
eobp
))
(
end-of-line
)
(
delete-char
1
)
(
insert
nntp-end-of-line
))))
(
defun
nntp-retrieve-headers-with-xover
(
articles
&optional
fetch-old
)
(
set-buffer
nntp-server-buffer
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment