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
28afe199
Commit
28afe199
authored
Jul 15, 1997
by
Richard M. Stallman
Browse files
(mail-mode-auto-fill): Use insert-before-markers.
parent
e744155a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/mail/sendmail.el
lisp/mail/sendmail.el
+3
-1
No files found.
lisp/mail/sendmail.el
View file @
28afe199
...
...
@@ -371,7 +371,9 @@ If within the headers, this makes the new lines into continuation lines."
(
save-excursion
(
beginning-of-line
)
(
while
(
not
(
eq
(
point
)
old-line-start
))
(
insert
" "
)
;; Use insert-before-markers in case we're inserting
;; before the saved value of point (which is common).
(
insert-before-markers
" "
)
(
forward-line
-1
))
t
)))
(
do-auto-fill
)))
...
...
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