1
0
Fork 0

unescape \a and \b as well

This commit is contained in:
mfranz 2007-10-27 17:25:39 +00:00
parent 1c1559f36c
commit 57a70fc141

View file

@ -168,9 +168,9 @@ fgUnescape(const char *s)
} else if (*s == 'f') {
r += '\f';
} else if (*s == 'a') {
;
r += '\a';
} else if (*s == 'b') {
;
r += '\b';
} else if (*s == 'x') {
if (!*++s)
break;