enable_processing_cmt

Specify the marker used in comments to (re)enable processing in a file.

Default *INDENT-ON*.

Usually works in pair with disable_processing_cmt.

Examples

Config:

disable_processing_cmt          = "-DISABLE-UNCRUSTIFY-"
enable_processing_cmt          = "-ENABLE-UNCRUSTIFY-"

Before

#define _ 0x20,
#define X 0x2B,

unsigned char labyrinth_a[] = {
_ _ X X _ X _ '\n',
X _ X _ _ X _ '\n',
X _ _ _ _ _ _ '\n',
X X _ X X _ _ '\n',
X _ _ _ X X _ '\n',
X _ X _ X _ _ 0x00 };

#undef _
#undef X

//-DISABLE-UNCRUSTIFY-
#define _ 0x20,
#define X 0x2C,

unsigned char labyrinth_b[] = {
_ _ X X X _ _ '\n',
X _ X _ _ X _ '\n',
X _ X X X _ _ '\n',
_ _ X _ _ X _ '\n',
X _ X _ _ X _ '\n',
X _ X X X _ _  0x00 };

#undef _
#undef X
//-ENABLE-UNCRUSTIFY-

After

#define _ 0x20,
#define X 0x2B,

unsigned char labyrinth_a[] = {
    _ _ X X _ X _ '\n',
    X _ X _ _ X _ '\n',
    X _ _ _ _ _ _ '\n',
    X X _ X X _ _ '\n',
    X _ _ _ X X _ '\n',
    X _ X _ X _ _ 0x00 };

#undef _
#undef X

//-DISABLE-UNCRUSTIFY-
#define _ 0x20,
#define X 0x2C,

unsigned char labyrinth_b[] = {
_ _ X X X _ _ '\n',
X _ X _ _ X _ '\n',
X _ X X X _ _ '\n',
_ _ X _ _ X _ '\n',
X _ X _ _ X _ '\n',
X _ X X X _ _  0x00 };

#undef _
#undef X
//-ENABLE-UNCRUSTIFY-

Note, indent was not applied to second array.

See also