Use file descriptor instead of path for mutt_decode_save_attachment()
[apps/madmutt.git] / muttlib.c
index 57fabf3..6ff6d89 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -501,7 +501,6 @@ int mutt_extract_token(BUFFER *dest, BUFFER *tok, int flags)
             if ((ISSPACE(ch) && !(flags & M_TOKEN_SPACE))
             || (ch == '#' && !(flags & M_TOKEN_COMMENT))
             || (ch == '=' && (flags & M_TOKEN_EQUAL))
-            || (ch == ';' && !(flags & M_TOKEN_SEMICOLON))
             || ((flags & M_TOKEN_PATTERN) && strchr("~=!|", ch)))
             {
                 break;