@@ -97,19 +97,21 @@ void win_add(Window w) {
exit(1);
if (head == NULL) {
c->next = NULL;
c->prev = NULL;
c->win = w;
head = c;
}
else {
for (t=head;t->next;t=t->next);
c->prev = t;
t->next = c;
cur = c;
The note is not visible to the blocked user.