diff options
| author | Tom Hinton <Tom.Hinton@cse.org.uk> | 2017-06-29 14:08:25 +0000 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-06-30 08:55:16 -0300 |
| commit | d848d4040ab40b61874e0f1717a1b73cfce3fda6 (patch) | |
| tree | 81ef236c2280d531f40da1ba14c3b4c29d671377 | |
| parent | 3840b6b4953020b1c739f1892774cfe2ea329bed (diff) | |
Fix minor mistake where indentation width is ignored
| -rw-r--r-- | emacs/notmuch-show.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index a4399abb..aafdd3d7 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -343,7 +343,7 @@ operation on the contents of the current buffer." (with-temp-buffer (insert all) (if indenting - (indent-rigidly (point-min) (point-max) (- depth))) + (indent-rigidly (point-min) (point-max) (- (* notmuch-show-indent-messages-width depth)))) ;; Remove the original header. (goto-char (point-min)) (re-search-forward "^$" (point-max) nil) @@ -922,7 +922,7 @@ will return nil if the CID is unknown or cannot be retrieved." (narrow-to-region part-beg part-end) (delete-region part-beg part-end) (apply #'notmuch-show-insert-bodypart-internal part-args) - (indent-rigidly part-beg part-end depth)) + (indent-rigidly part-beg part-end (* notmuch-show-indent-messages-width depth))) (goto-char part-end) (delete-char 1) (notmuch-show-record-part-information (second part-args) |
