fix # not escaped on quote minify

This commit is contained in:
zawz 2021-06-29 15:33:54 +02:00
parent e7d868de9e
commit 40aee8e3cf

View file

@ -69,8 +69,8 @@ bool r_replace_var(_obj* in, strmap_t* varmap)
return true;
}
const char* escaped_char=" \\\t!\"()|&*?~><";
const char* doublequote_escape_char=" \t'|&\\*?~><";
const char* escaped_char=" \\\t!\"()|&*?~><#";
const char* doublequote_escape_char=" \t'|&\\*?~><#";
uint32_t count_escape_chars(std::string const& in, bool doublequote)
{
uint32_t r=0;