Add translators for \v and \a per posix.

This commit is contained in:
christos 2019-08-01 13:17:42 +00:00
parent 6cef9d101e
commit 806ea548cf
1 changed files with 2 additions and 0 deletions

View File

@ -498,6 +498,8 @@ char *qstring(const char *is, int delim) /* collect string up to next delim */
case 'b': *bp++ = '\b'; break;
case 'f': *bp++ = '\f'; break;
case 'r': *bp++ = '\r'; break;
case 'v': *bp++ = '\v'; break;
case 'a': *bp++ = '\a'; break;
default:
if (!isdigit(c)) {
*bp++ = c;