git: 9front

Download patch

ref: 305fb9a1bb0ef6b11e4de0c431a6e0d0cfbf40a1
parent: a9e10074eb16467da53ebe70dd98f458b2f95692
author: Ori Bernstein <ori@eigenstate.org>
date: Mon Nov 3 23:42:04 EST 2025

vt: \[c (RIS) should reset text attributes to default

this prevents stuck underline/bold/...

--- a/sys/src/cmd/vt/vt.c
+++ b/sys/src/cmd/vt/vt.c
@@ -310,6 +310,7 @@
 			case 'c':
 				cursoron = 1;
 				ttystate[cs->raw].nlcr = 0;
+				attr = defattr;
 				break;
 
 			/*
--