Skip to content

Commit 7a4a216

Browse files
committed
fix issue #197: do not scroll down when printing past overflow (but do so when interactive)
1 parent 5956f2e commit 7a4a216

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pcbasic/basic/console.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def write(self, s, do_echo=True):
279279
for c in iterchar(s):
280280
if c in b'\t\n\r\a\x0B\x0C\x1C\x1D\x1E\x1F':
281281
# non-printing or position-dependent chars, dump buffer first
282-
self._text_screen.write_chars(b''.join(out_chars), do_scroll_down=True)
282+
self._text_screen.write_chars(b''.join(out_chars), do_scroll_down=False)
283283
out_chars = []
284284
row, col = self.current_row, self.current_col
285285
if c == b'\t':
@@ -316,7 +316,7 @@ def write(self, s, do_echo=True):
316316
# includes \b, \0, and non-control chars
317317
out_chars.append(c)
318318
last = c
319-
self._text_screen.write_chars(b''.join(out_chars), do_scroll_down=True)
319+
self._text_screen.write_chars(b''.join(out_chars), do_scroll_down=False)
320320

321321
def write_line(self, s=b'', do_echo=True):
322322
"""Write a string to the screen and end with a newline."""

0 commit comments

Comments
 (0)