We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b9ac9 commit 7517d0bCopy full SHA for 7517d0b
src/core/n-strings.c
@@ -637,7 +637,7 @@ static struct digest {
637
if ( (c >= 'a' && c <= 'z')
638
|| (c >= 'A' && c <= 'Z')
639
|| c == '?' || c == '!' || c == '&'
640
- || c == '*' || c == '=' || c == '~'
+ || c == '*' || c == '=' || c == '~' || c == '_'
641
) break; // no conversion
642
goto byte_needs_encoding;
643
case LEX_CLASS_NUMBER:
@@ -687,7 +687,7 @@ static struct digest {
687
688
689
690
691
692
goto char_needs_encoding;
693
0 commit comments