mutt_extract_token(&tmp, s, MUTT_TOKEN_NO_FLAGS);
if (mutt_str_atoui(tmp.data, &match) < 0)
{
- mutt_buffer_printf(err, _("%s: invalid number: %s"), color ? "color" : "mono", tmp.data);
+ mutt_buffer_printf(err, _("%s: invalid number: %s"),
+ color ? "color" : "mono", tmp.data);
mutt_buffer_dealloc(&tmp);
return MUTT_CMD_WARNING;
}
#include "mx.h"
#include "ncrypt/ncrypt.h"
-struct ListHead AttachAllow = STAILQ_HEAD_INITIALIZER(AttachAllow); ///< List of attachment types to be counted
+struct ListHead AttachAllow = STAILQ_HEAD_INITIALIZER(AttachAllow); ///< List of attachment types to be counted
struct ListHead AttachExclude = STAILQ_HEAD_INITIALIZER(AttachExclude); ///< List of attachment types to be ignored
-struct ListHead InlineAllow = STAILQ_HEAD_INITIALIZER(InlineAllow); ///< List of inline types to counted
+struct ListHead InlineAllow = STAILQ_HEAD_INITIALIZER(InlineAllow); ///< List of inline types to counted
struct ListHead InlineExclude = STAILQ_HEAD_INITIALIZER(InlineExclude); ///< List of inline types to ignore
/**