diff options
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -586,7 +586,7 @@ S_missingterm(pTHX_ char *s) if (nl) *nl = '\0'; } - else if (isCNTRL(PL_multi_close)) { + else if ((U8) PL_multi_close < 32) { *tmpbuf = '^'; tmpbuf[1] = (char)toCTRL(PL_multi_close); tmpbuf[2] = '\0'; |