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
fc23ca96
Commit
fc23ca96
authored
May 31, 1993
by
Richard M. Stallman
Browse files
(mail-do-fcc): Put back the newline at the start
of the fcc temp buffer. It got lost somewhere.
parent
ef194aa8
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 @
fc23ca96
...
...
@@ -379,7 +379,8 @@ the user from the mailer."
(% abs 60))))
(set-buffer tembuf)
(erase-buffer)
(insert "From " (user-login-name) " "
;; This initial newline is written out if the fcc file already exists.
(insert "\nFrom " (user-login-name) " "
(current-time-string time) "\n")
;; Insert the time zone before the year.
(forward-char -1)
...
...
@@ -433,6 +434,7 @@ the user from the mailer."
;; Else append to the file directly.
(write-region
;; Include a blank line before if file already exists.
(if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min)))
(point-max) (car fcc-list) t)))
(setq fcc-list (cdr fcc-list))))
...
...
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