When shutdown, ensure cursor is just *off* the bottom of the screen, not *at* the bottom.

This commit is contained in:
Tony Garnock-Jones 2016-09-12 12:43:32 -04:00
parent 4be494a8c2
commit 3417d3d265
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,8 @@
(define (terminal-shutdown t)
(output t
(ansi:select-graphic-rendition ansi:style-normal)
(ansi:goto (tty-rows t) 1))
(ansi:goto (tty-rows t) 1)
"\n")
(flush t)
(ansi:tty-restore!))