mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove EXTRACT_MACROS check from EXTRACT_NUMBER in regex.

Commit 367b1135 converted EXTRACT_NUMBER to always call a function, to
enable the use of parameter types and local variables. In doing this
it removed the separate DEBUG implementation.

The EXTRACT_MACROS check was accidentally left in, but no longer makes
sense outside of the DEBUG.

-3
-3
regex.c
··· 555 555 *dest = b1 | (b2 << 8) | mask; 556 556 } 557 557 558 - #ifndef EXTRACT_MACROS /* To debug the macros. */ 559 - #undef EXTRACT_NUMBER 560 558 #define EXTRACT_NUMBER(dest, src) extract_number ((unsigned int *)&dest, src) 561 - #endif /* not EXTRACT_MACROS */ 562 559 563 560 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number. 564 561 SOURCE must be an lvalue. */