1
0
Fork 0

- fixed indentation.

This commit is contained in:
cage 2020-09-18 15:55:22 +02:00
parent d6bc8da305
commit c0c0134972
1 changed files with 13 additions and 13 deletions

View File

@ -942,21 +942,21 @@ Force the checking for new message in the thread the selected message belong."
:direction :output
:element-type 'character
:if-exists :append)
(write-sequence signature stream))))
(write-sequence signature stream))))
(add-body ()
(let ((temp-file (fs:temporary-file)))
(prepare-reply-body temp-file)
(add-signature temp-file)
(let ((reference-open-file (get-universal-time)))
(croatoan:end-screen)
(os-utils:open-with-editor temp-file)
(when (and (> (fs:file-size temp-file)
0)
(> (fs:get-stat-mtime temp-file)
reference-open-file))
(let ((body (fs:slurp-file temp-file)))
(setf (sending-message:body *message-to-send*) body)
(add-subject)))))))
(prepare-reply-body temp-file)
(add-signature temp-file)
(let ((reference-open-file (get-universal-time)))
(croatoan:end-screen)
(os-utils:open-with-editor temp-file)
(when (and (> (fs:file-size temp-file)
0)
(> (fs:get-stat-mtime temp-file)
reference-open-file))
(let ((body (fs:slurp-file temp-file)))
(setf (sending-message:body *message-to-send*) body)
(add-subject)))))))
(add-body)))
(defun reply-message ()