[PATCH v2 1/3] contrib: pick: if no target specified go to first matching message
David Bremner
david at tethera.net
Sun Jun 30 09:05:59 PDT 2013
Mark Walters <markwalters1009 at gmail.com> writes:
> - (let ((msg-id (notmuch-id-to-query (plist-get msg :id))))
> - (when (string= msg-id notmuch-pick-target-msg)
> + (let ((msg-id (notmuch-id-to-query (plist-get msg :id)))
> + (target notmuch-pick-target-msg))
> + (when (or (and (not target) (plist-get msg :match))
> + (string= msg-id target))
I can't really figure out from looking at the code what this 'target'
business is about. Possibly unrelated to this patch, but maybe some
documentation is needed?
d
More information about the notmuch
mailing list