From: pdmef Date: Thu, 1 Sep 2005 17:19:14 +0000 (+0000) Subject: Rocco Rutte: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=c565d2f14f1655a6483171e1636e5803533b6ebe Rocco Rutte: - continue to execute hooks even if some error occured git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@473 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/VERSION.svn b/VERSION.svn index 68cfb10..8410b8b 100644 --- a/VERSION.svn +++ b/VERSION.svn @@ -1 +1 @@ -472 +473 diff --git a/hook.c b/hook.c index 2f9345d..0a7ce54 100644 --- a/hook.c +++ b/hook.c @@ -31,6 +31,8 @@ #include #include +#define ERROR_STOP 0 + typedef struct hook { int type; /* hook type */ rx_t rx; /* regular expression */ @@ -288,10 +290,12 @@ void mutt_folder_hook (char *path) if ((regexec (tmp->rx.rx, path, 0, NULL, 0) == 0) ^ tmp->rx.not) { if (mutt_parse_rc_line (tmp->command, &token, &err) == -1) { mutt_error ("%s", err.data); - mem_free (&token.data); mutt_sleep (1); /* pause a moment to let the user see the error */ - current_hook_type = 0; - return; + if (ERROR_STOP) { + mem_free (&token.data); + current_hook_type = 0; + return; + } } } } @@ -331,11 +335,13 @@ void mutt_message_hook (CONTEXT * ctx, HEADER * hdr, int type) if (hook->type & type) if ((mutt_pattern_exec (hook->pattern, 0, ctx, hdr) > 0) ^ hook->rx.not) if (mutt_parse_rc_line (hook->command, &token, &err) != 0) { - mem_free (&token.data); mutt_error ("%s", err.data); mutt_sleep (1); - current_hook_type = 0; - return; + if (ERROR_STOP) { + mem_free (&token.data); + current_hook_type = 0; + return; + } } } mem_free (&token.data); @@ -456,11 +462,13 @@ void mutt_account_hook (const char *url) if ((regexec (hook->rx.rx, url, 0, NULL, 0) == 0) ^ hook->rx.not) { if (mutt_parse_rc_line (hook->command, &token, &err) == -1) { - mem_free (&token.data); mutt_error ("%s", err.data); mutt_sleep (1); - - return; + if (ERROR_STOP) { + mem_free (&token.data); + current_hook_type = 0; + return; + } } } }