Skip to content

Commit

Permalink
term: ignore bails on %born event, prevents annoying traces on 411
Browse files Browse the repository at this point in the history
  • Loading branch information
pkova committed Oct 24, 2024
1 parent 70ad386 commit 4c1764e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkg/vere/io/term.c
Original file line number Diff line number Diff line change
Expand Up @@ -1585,6 +1585,9 @@ u3_term_wall(u3_noun wol)
u3z(wol);
}

static void
_born_bail_cb(u3_ovum* egg_u, u3_ovum_news new_e) {}

/* _term_io_talk():
*/
static void
Expand All @@ -1607,7 +1610,11 @@ _term_io_talk(u3_auto* car_u)
//
{
cad = u3nc(c3__born, u3_nul);
_term_ovum_plan(car_u, u3k(wir), cad);
u3_ovum* egg_u = u3_auto_plan(car_u, u3_ovum_init(0, c3__d, wir, cad));
u3z(egg_u->pin_u.lab);
egg_u->pin_u.lab = u3_blip;

u3_auto_peer(egg_u, 0, 0, _born_bail_cb);
}

// send terminal dimensions
Expand Down

0 comments on commit 4c1764e

Please sign in to comment.