fix for subtry (also new name)

This commit is contained in:
overflowerror 2017-03-10 23:15:35 +01:00
parent 673e411c86
commit b5958cb270

View file

@ -24,7 +24,7 @@ typedef int try_t;
#define succeeded true
#define subtry() try_t _try_id = try_pop();
#define trycall try_push(_try_id);
#define s_(f) try_push(_try_id); f; if(_try_has_catch(_try_id)) return;
#define tpush() try_push(_try_id)
#define cthrow(e) _try_id = try_pop(); throw(e);