From 981a87f73527ec420361b1b156d763c5357af299 Mon Sep 17 00:00:00 2001 From: Stefano Zacchiroli Date: Tue, 29 May 2012 22:44:27 +0200 Subject: [PATCH] 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) --- contrib/notmuch-mutt/notmuch-mutt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.43.0