summaryrefslogtreecommitdiffstats
path: root/protos.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-11-23 10:13:31 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-11-23 10:13:31 +0000
commit2746247d29fe46b242d029ae016d13633c05ef81 (patch)
treee3ac177a93c395ef836a57ce637b8bc2372e14d1 /protos.h
parent9f61713ddeea783bddc259b2ecfe8a1dcd7481f4 (diff)
From Byrial:
I don't think that the match-all pattern modifier works as can be expected from a logical point of view. The attached patch will make it work as I expect it to work: - It works on all patterns which explicit or implicit use address lists: ~c, ~C, ~e, ~f, ~l, ~L, ~p, ~P, and ~t. (It didn't work with ~l before). - It works such that a modified pattern always match, unless there is at least one address in at least one of the referenced lists that it doesn't match.
Diffstat (limited to 'protos.h')
-rw-r--r--protos.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/protos.h b/protos.h
index 3696ef19..aa90ace0 100644
--- a/protos.h
+++ b/protos.h
@@ -237,7 +237,7 @@ int mutt_invoke_sendmail (ADDRESS *, ADDRESS *, ADDRESS *, const char *, int);
int mutt_is_autoview (char *);
int mutt_is_mail_list (ADDRESS *);
int mutt_is_message_type(int, const char *);
-int mutt_is_list_recipient (ADDRESS *a);
+int mutt_is_list_recipient (int, ADDRESS *, ADDRESS *);
int mutt_is_text_type (int, char *);
int mutt_is_valid_mailbox (const char *);
int mutt_multi_choice (char *prompt, char *letters);