From e8c4f90d732a40c94eb1c221c189bbfd209d82cf Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Fri, 3 Mar 2006 10:12:27 +0000 Subject: [PATCH] reply-hook is used in contexts where we don't have a Context structure available. Hence, it must not require the full message. --- hook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hook.c b/hook.c index 73fd3d82..064910e7 100644 --- a/hook.c +++ b/hook.c @@ -153,7 +153,7 @@ int mutt_parse_hook (BUFFER *buf, BUFFER *s, unsigned long data, BUFFER *err) if (data & (M_SENDHOOK | M_SEND2HOOK | M_SAVEHOOK | M_FCCHOOK | M_MESSAGEHOOK | M_REPLYHOOK)) { if ((pat = mutt_pattern_comp (pattern.data, - (data & (M_SENDHOOK | M_SEND2HOOK | M_FCCHOOK)) ? 0 : M_FULL_MSG, + (data & (M_SENDHOOK | M_SEND2HOOK | M_FCCHOOK | M_REPLYHOOK)) ? 0 : M_FULL_MSG, err)) == NULL) goto error; } -- 2.40.0