Fixes #3
This commit is contained in:
parent
feb4da9f86
commit
f2527a0b47
@ -56,7 +56,11 @@
|
||||
(setq subj (concat "Subject: " (get-message-field (gethash "content" msg-hash) "subj")))
|
||||
(princ (concat subj "\n")))
|
||||
(princ (concat "__________________________________\n\n"
|
||||
(s-join "\n" (get-message-field (gethash "content" msg-hash) "body"))))
|
||||
(replace-in-string "\r" ""
|
||||
(s-join "\n"
|
||||
(get-message-field
|
||||
(gethash "content" msg-hash)
|
||||
"body")))))
|
||||
(princ "\n__________________________________\n")
|
||||
(princ "[")
|
||||
(insert-button "Answer"
|
||||
|
6
idec.el
6
idec.el
@ -81,7 +81,7 @@ put cursor to CHECKPOINT."
|
||||
(switch-to-buffer (concat "*IDEC: " (gethash "subj" msg) "*"))
|
||||
(princ (make-message-header msg))
|
||||
(princ (concat "__________________________________\n\n"
|
||||
(gethash "body" msg)))
|
||||
(replace-in-string "\r" "" (gethash "body" msg))))
|
||||
(princ "\n__________________________________\n")
|
||||
(princ "[")
|
||||
(let (answer-hash)
|
||||
@ -120,7 +120,9 @@ put cursor to CHECKPOINT."
|
||||
(princ (concat "At: " (get-message-field (gethash "msg" msg) "time") "\n"))
|
||||
(princ (concat "Subject: " (get-message-field (gethash "msg" msg) "subj") "\n"))
|
||||
(princ (concat "__________________________________\n\n"
|
||||
(s-join "\n" (get-message-field (gethash "msg" msg) "body"))))
|
||||
(replace-in-string "\r" ""
|
||||
(s-join "\n" (get-message-field (gethash "msg" msg)
|
||||
"body")))))
|
||||
(princ "\n__________________________________\n")
|
||||
(princ "[")
|
||||
(let (answer-hash)
|
||||
|
Loading…
Reference in New Issue
Block a user