fix quote minify applying in heredocument

This commit is contained in:
zawwz 2021-10-28 13:34:24 +02:00
parent cdf4ca5b85
commit e80ca9fb4c

View file

@ -650,11 +650,11 @@ bool r_minify_backtick(_obj* in)
return true;
}
// optimisation for processors that don't have recurse-cancellation
bool r_minify(_obj* in)
{
r_minify_empty_manip(in);
r_minify_single_block(in);
r_minify_useless_quotes(in);
r_do_string_processor(in);
return true;
}
@ -663,4 +663,5 @@ void minify_generic(_obj* in)
{
recurse(r_minify, in);
recurse(r_minify_backtick, in);
recurse(r_minify_useless_quotes, in);
}