mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 03:48:10 +01:00
emacs: add duplicate support to notmuch-show-view-raw-message
This fixes one of the bugs reported by Gregor in [1] [1]: id:87edxw8jp4.fsf@no.workgroup
This commit is contained in:
parent
05c85290ca
commit
6d6d2a5fe7
2 changed files with 6 additions and 3 deletions
|
@ -2143,12 +2143,16 @@ to show, nil otherwise."
|
||||||
"View the original source of the current message."
|
"View the original source of the current message."
|
||||||
(interactive)
|
(interactive)
|
||||||
(let* ((id (notmuch-show-get-message-id))
|
(let* ((id (notmuch-show-get-message-id))
|
||||||
(buf (get-buffer-create (concat "*notmuch-raw-" id "*")))
|
(duplicate (notmuch-show-get-duplicate))
|
||||||
|
(args (if (> duplicate 1)
|
||||||
|
(list (format "--duplicate=%d" duplicate) id)
|
||||||
|
(list id)))
|
||||||
|
(buf (get-buffer-create (format "*notmuch-raw-%s-%d*" id duplicate)))
|
||||||
(inhibit-read-only t))
|
(inhibit-read-only t))
|
||||||
(pop-to-buffer-same-window buf)
|
(pop-to-buffer-same-window buf)
|
||||||
(erase-buffer)
|
(erase-buffer)
|
||||||
(let ((coding-system-for-read 'no-conversion))
|
(let ((coding-system-for-read 'no-conversion))
|
||||||
(notmuch--call-process notmuch-command nil t nil "show" "--format=raw" id))
|
(apply #'notmuch--call-process notmuch-command nil t nil "show" "--format=raw" args))
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(set-buffer-modified-p nil)
|
(set-buffer-modified-p nil)
|
||||||
(setq buffer-read-only t)
|
(setq buffer-read-only t)
|
||||||
|
|
|
@ -383,7 +383,6 @@ test_expect_equal_file_nonempty $EXPECTED/notmuch-show-duplicate-4 OUTPUT
|
||||||
|
|
||||||
FILE4=$(notmuch search --output=files --duplicate=4 "id:${ID3}")
|
FILE4=$(notmuch search --output=files --duplicate=4 "id:${ID3}")
|
||||||
test_begin_subtest "duplicate=4, raw"
|
test_begin_subtest "duplicate=4, raw"
|
||||||
test_subtest_known_broken
|
|
||||||
test_emacs "(notmuch-show \"id:${ID3}\")
|
test_emacs "(notmuch-show \"id:${ID3}\")
|
||||||
(notmuch-show-choose-duplicate 4)
|
(notmuch-show-choose-duplicate 4)
|
||||||
(notmuch-show-view-raw-message)
|
(notmuch-show-view-raw-message)
|
||||||
|
|
Loading…
Reference in a new issue