summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/screen.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/mbbsd/screen.c b/mbbsd/screen.c
index 1aa10f6b..ee3f44f8 100644
--- a/mbbsd/screen.c
+++ b/mbbsd/screen.c
@@ -120,7 +120,6 @@ redoscr(void)
output((char *)bp->data, len);
tc_col += len;
if (tc_col >= t_columns) {
- /* XXX Is this code right? */
if (automargins)
tc_col = t_columns - 1;
else {
@@ -210,7 +209,6 @@ refresh(void)
output((char *)&bp->data[bp->smod], bp->emod - bp->smod + 1);
tc_col = bp->emod + 1;
if (tc_col >= t_columns) {
- /* XXX Is this code right? */
if (automargins)
tc_col = t_columns - 1;
else {