From: Carl Worth Date: Tue, 3 Nov 2009 05:13:19 +0000 (-0800) Subject: notmuch show: Switch to control character to mark sections of output X-Git-Tag: 0.1~615 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=a81849b5e21632cfca7d634d718501f67219bb60;hp=a81849b5e21632cfca7d634d718501f67219bb60 notmuch show: Switch to control character to mark sections of output We were previously using things like "%message{" which were not guaranteed to never appear in an email message. Using a control character (^L or '\f' instead of '%') gives us better assurance that our delimiter doesn't show up in an original email message. This still isn't entirely safe since we're decoding encoded text in the body of the email message so almost all bets are off really. ---