| 1314 | // something else, if the character encoding is set differently. |
| 1315 | |
| 1316 | void PrintCh2(char ch) |
| 1317 | { |
| 1318 | int nCharsetSav = us.nCharset; |
| 1319 | |
| 1320 | us.nCharset = (us.nCharset > ccNone ? ccIBM : ccNone); |
| 1321 | PrintCh(ch); |
| 1322 | us.nCharset = nCharsetSav; |
| 1323 | } |
| 1324 | |
| 1325 | |
| 1326 | // Like PrintTab() but ensure line drawing characters aren't converted to |
no test coverage detected