]> git.notmuchmail.org Git - notmuch/commitdiff
Fix minor mistake where indentation width is ignored
authorTom Hinton <Tom.Hinton@cse.org.uk>
Thu, 29 Jun 2017 14:08:25 +0000 (14:08 +0000)
committerDavid Bremner <david@tethera.net>
Fri, 30 Jun 2017 11:55:16 +0000 (08:55 -0300)
emacs/notmuch-show.el

index a4399abb97aa07a4ff08ca125819eb716ac054ae..aafdd3d77282af3ade478c7c6d65f1951e483b0d 100644 (file)
@@ -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)