git: drawterm

Download patch

ref: 44a7bdfaeb268bbc9df69693fa52d551beb2516d
parent: de0baba0ab52f9279212233558bbb1ff67e5106c
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Aug 18 09:59:26 EDT 2025

kern: reset notepending after each "syscall()"

--- a/kern/sysfile.c
+++ b/kern/sysfile.c
@@ -848,6 +848,8 @@
 {
 	assert(up->nerrlab == 1);
 	poperror();
+
+	up->notepending = 0;	/* theres no popnote */
 }
 
 static void
--