From: Michal Sojka Date: Wed, 5 Nov 2014 00:25:52 +0000 (+0100) Subject: cli: search: Convert ctx. to ctx-> X-Git-Tag: 0.19_rc1~10 X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=5e16b94a238a44627356dd0e43cf8c50b7f0ce21;hp=5e16b94a238a44627356dd0e43cf8c50b7f0ce21;p=notmuch cli: search: Convert ctx. to ctx-> In the next commit, notmuch_search_command will be refactored to several smaller functions. In order to simplify the next commit to verbatim move of several lines to new functions with search_context_t* argument, we convert all references to this structure to pointer dereferences. To do so we rename the context variable and use the original name ctx as the pointer to the renamed structure. ---