Parse ^? correctly now

This commit is contained in:
ache 1995-05-14 22:33:52 +00:00
parent 471b2e6d7b
commit d015557a82

View File

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