1
0
mirror of https://github.com/simh/simh.git synced 2026-03-06 19:21:29 +00:00

SCP: Reasonably format output after EOF return from read_line_p

This commit is contained in:
Mark Pizzolato
2023-01-07 08:07:06 -10:00
parent 4bbc3dfd1c
commit 2e2270ccc7

6
scp.c
View File

@@ -6038,6 +6038,8 @@ if (sim_switches & SWMASK ('P')) {
strlcat (prompt, " ", sizeof (prompt));
if (sim_rem_cmd_active_line == -1) {
cptr = read_line_p (prompt, cbuf, sizeof(cbuf), stdin);
if (cptr == NULL)
printf ("\n");
if ((cptr == NULL) || (*cptr == 0))
cptr = deflt;
else
@@ -10869,6 +10871,8 @@ if (sim_switches & SWMASK ('N'))
if (sim_rem_cmd_active_line != -1)
return deflt;
cptr = read_line_p (ques, cbuf, sizeof(cbuf), stdin);
if (cptr == NULL)
printf ("\n");
if ((cptr == NULL) || (*cptr == 0))
return deflt;
if ((*cptr == 'Y') || (*cptr == 'y'))
@@ -15489,9 +15493,7 @@ while (TRUE) {
}
if (!cptr) { /* EOF, exit help */
#if !defined(_WIN32)
printf ("\n");
#endif
break;
}