From: Dmitry Kurochkin Date: Sun, 5 Feb 2012 07:13:49 +0000 (+0400) Subject: emacs: separate history for operations which accept single and multiple tags X-Git-Tag: debian/0.12_rc1-1~109 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=904eafaefc356b654842ff59de6afc17f24ccf17;hp=904eafaefc356b654842ff59de6afc17f24ccf17 emacs: separate history for operations which accept single and multiple tags Some tag-related operations accept a single tag without prefix (`notmuch-select-tag-with-completion'), others accept multiple tags prefixed with '+' or '-' (`notmuch-read-tag-changes'). Before the change, both functions used a single default minibuffer history. This is inconvenient because you have to skip options with incompatible format when going through the history. The patch adds separate history lists for the two functions. Note that functions that accept the same input format (e.g. "+", "-", "*") share the history list as before. ---