From: Carl Worth Date: Mon, 16 Nov 2009 18:45:10 +0000 (-0800) Subject: notmuch.el: Indent messages to show nested structure of thread. X-Git-Tag: 0.1~488 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;ds=sidebyside;h=352e91625b2c0148a215ece9f857a56bdfab896f;hp=352e91625b2c0148a215ece9f857a56bdfab896f;p=notmuch notmuch.el: Indent messages to show nested structure of thread. Now that we're actually adding text to the buffer for the indentation, our old aproach of using positions to record regions to manipulate is now longer correct. Fortunately, it's easy to switch from positions to markers which are robust, (just call point-marker instead of point and all relevant functions accept markers as well as points). I also finally fixed the bug where the text "[6 line signature]" we display was causing the one-line-summary of the next message to be on its same line rather than at the beginning of the next line where it belongs. ---