From: Austin Clements Date: Mon, 6 Oct 2014 23:17:07 +0000 (-0600) Subject: lib: Move message ID compression to _notmuch_message_create_for_message_id X-Git-Tag: 0.19_rc1~53 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=54ec8a0fd87ae7a32c8208be67a345c0eeea7f69;hp=54ec8a0fd87ae7a32c8208be67a345c0eeea7f69 lib: Move message ID compression to _notmuch_message_create_for_message_id Previously, this was performed by notmuch_database_add_message. This happens to be the only caller currently (which is why this was safe), but we're about to introduce more callers, and it makes more sense to put responsibility for ID compression in the lower-level function rather than requiring each caller to handle it. ---