summaryrefslogtreecommitdiffstats
path: root/mbbsd/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/io.c')
-rw-r--r--mbbsd/io.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mbbsd/io.c b/mbbsd/io.c
index 76fe3065..3fcbf359 100644
--- a/mbbsd/io.c
+++ b/mbbsd/io.c
@@ -1007,7 +1007,9 @@ oldgetdata(int line, int col, const char *prompt, char *buf, int len, int echo)
strlcpy(lastcmd[0], buf, sizeof(lastcmd[0]));
memmove(lastcmd+1, lastcmd, (MAXLASTCMD-1)*sizeof(lastcmd[0]));
}
- outc('\n');
+ /* why return here? */
+ // outc('\n');
+ move(y+1, 0);
refresh();
}
if ((echo == LCECHO) && isupper((int)buf[0]))