Austin Clements <[email protected]> writes: > The default reply format is the last bastion of the old message > formatter style. This series converts it to the new self-recursive > style. After this, there will be one last series to rip out the > compatibility code and do final cleanup.
Works fine, patches look good... just 2 "spacing" questions: in id:"[email protected]" + typedef enum { + NOTMUCH_SHOW_TEXT_PART_REPLY = 1<<0, + } notmuch_show_text_part_flags; Should this be like: NOTMUCH_SHOW_TEXT_PART_REPLY = (1 << 0), and this + * If flags&NOTMUCH_SHOW_TEXT_PART_REPLY, this prepends "> " to each + * output line. + * like: + * If flags & NOTMUCH_SHOW_TEXT_PART_REPLY, this prepends "> " to each Tomi _______________________________________________ notmuch mailing list [email protected] http://notmuchmail.org/mailman/listinfo/notmuch
