aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib
diff options
context:
space:
mode:
authorGravatar Stefano Zacchiroli <zack@upsilon.cc>2012-05-29 22:44:27 +0200
committerGravatar David Bremner <bremner@debian.org>2012-05-29 18:18:07 -0300
commit981a87f73527ec420361b1b156d763c5357af299 (patch)
tree5b23f8f865ea87b96bdb1cd7e5c91cbc1242dd41 /contrib
parentd99f15d7ee38d606a2b3b5bd34f1e6c787b3b8a2 (diff)
notmuch-mutt: lookup notmuch-search-terms(7) when asked for help
When asked for interactive help, lookup notmuch-search-terms(7) instead of notmuch(1). Syntax of notmuch queries used to be described in the latter, but has recently been moved to the former. Closes: #675073 (in the Debian BTS)
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/notmuch-mutt/notmuch-mutt2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/notmuch-mutt/notmuch-mutt b/contrib/notmuch-mutt/notmuch-mutt
index 71206c35..fee165d6 100755
--- a/contrib/notmuch-mutt/notmuch-mutt
+++ b/contrib/notmuch-mutt/notmuch-mutt
@@ -60,7 +60,7 @@ sub prompt($$) {
while (1) {
chomp($query = $term->readline($text, $default));
if ($query eq "?") {
- system("man", "notmuch");
+ system("man", "notmuch-search-terms");
} else {
$term->WriteHistory($histfile);
return $query;