notmuch-mutt: clarify the empty Maildir function operates on search caches

Rename the function and adjust the documentation comment.
This commit is contained in:
Paul Wise 2023-05-28 10:29:44 +08:00 committed by David Bremner
parent 93d936c5ae
commit 85916d8a96

View file

@ -26,8 +26,8 @@ $xdg_cache_dir = $ENV{XDG_CACHE_HOME} if $ENV{XDG_CACHE_HOME};
my $cache_dir = "$xdg_cache_dir/notmuch/mutt"; my $cache_dir = "$xdg_cache_dir/notmuch/mutt";
# create an empty maildir (if missing) or empty an existing maildir" # create an empty search cache maildir (if missing) or empty existing one
sub empty_maildir($) { sub empty_search_cache_maildir($) {
my ($maildir) = (@_); my ($maildir) = (@_);
rmtree($maildir) if (-d $maildir); rmtree($maildir) if (-d $maildir);
my $folder = new Mail::Box::Maildir(folder => $maildir, my $folder = new Mail::Box::Maildir(folder => $maildir,
@ -45,7 +45,7 @@ sub search($$$) {
push @args, "--duplicate=1" if $remove_dups; push @args, "--duplicate=1" if $remove_dups;
push @args, $query; push @args, $query;
empty_maildir($maildir); empty_search_cache_maildir($maildir);
open my $pipe, '-|', @args or die "Running @args failed: $!\n"; open my $pipe, '-|', @args or die "Running @args failed: $!\n";
while (<$pipe>) { while (<$pipe>) {
chomp; chomp;
@ -120,7 +120,7 @@ sub thread_action($$@) {
my $mid = get_message_id(); my $mid = get_message_id();
if (! defined $mid) { if (! defined $mid) {
empty_maildir($results_dir); empty_search_cache_maildir($results_dir);
die "notmuch-mutt: cannot find Message-Id, abort.\n"; die "notmuch-mutt: cannot find Message-Id, abort.\n";
} }