1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 20:12:23 +00:00

Fixed Remote Console to tolerate bare LF as a line terminator and enhanced the tmxr debug output for special characters

This commit is contained in:
Mark Pizzolato
2013-04-30 08:37:11 -07:00
parent 8735538d72
commit b1e31a7034
2 changed files with 20 additions and 2 deletions

View File

@@ -598,6 +598,9 @@ for (i=(was_stepping ? sim_rem_step_line : 0);
--sim_rem_buf_ptr[i];
}
break;
case '\n':
if (sim_rem_buf_ptr[i] == 0)
break;
case '\r':
tmxr_linemsg (lp, "\r\n");
if (sim_rem_buf_ptr[i]+1 >= sim_rem_buf_size[i]) {