mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-24 23:44:56 +03:00
Show the how of a bail in more cases.
This commit is contained in:
parent
e753562812
commit
e5e142c6ea
17
n/m.c
17
n/m.c
@ -534,15 +534,6 @@ u3m_bail(u3_noun how)
|
||||
if ( (c3__exit == how) && (u3R == &u3H->rod_u) ) {
|
||||
abort();
|
||||
}
|
||||
if ( c3__fail == how ) {
|
||||
abort();
|
||||
}
|
||||
if ( c3__foul == how ) {
|
||||
abort();
|
||||
}
|
||||
if ( c3__meme == how ) {
|
||||
abort();
|
||||
}
|
||||
|
||||
/* Printf some metadata.
|
||||
*/
|
||||
@ -565,8 +556,12 @@ u3m_bail(u3_noun how)
|
||||
}
|
||||
}
|
||||
|
||||
if ( c3__oops == how ) {
|
||||
abort();
|
||||
switch ( how ) {
|
||||
case c3__fail:
|
||||
case c3__foul:
|
||||
case c3__meme:
|
||||
case c3__oops:
|
||||
abort();
|
||||
}
|
||||
|
||||
if ( &(u3H->rod_u) == u3R ) {
|
||||
|
Loading…
Reference in New Issue
Block a user