sh: Remove a redundant STPUTC check.

This commit is contained in:
Jilles Tjoelker 2016-03-02 22:52:54 +00:00
parent 90a2c7ea86
commit 2efd8c0a6c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=296327

View File

@ -1671,7 +1671,7 @@ parsesub: {
c = pgetc_linecont(); c = pgetc_linecont();
} while (is_digit(c)); } while (is_digit(c));
} else { } else {
STPUTC(c, out); USTPUTC(c, out);
c = pgetc_linecont(); c = pgetc_linecont();
} }
} else if (is_special(c)) { } else if (is_special(c)) {