Parse ^? correctly now

This commit is contained in:
Andrey A. Chernov 1995-05-14 22:33:52 +00:00
parent 4f5129899a
commit d9f3f4f9bb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8523

View File

@ -174,6 +174,9 @@ struct term_path *path; {
*dp++ = '0';
}
sp++;
} else if (*sp == '?') {
*dp++ = '\177';
sp++;
} else
*dp++ = '^';
break;