diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-10-15 23:02:13 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-10-15 23:02:13 -0700 |
commit | c9e0e299e93a5c4f9caf9df31aed18038650a7be (patch) | |
tree | 660df76e0d361c128b3f16410ffdd7580fd18797 /unwind.h | |
parent | 2956fe44fc0e17c69f3caec5a56397dd74765772 (diff) | |
download | txr-c9e0e299e93a5c4f9caf9df31aed18038650a7be.tar.gz txr-c9e0e299e93a5c4f9caf9df31aed18038650a7be.tar.bz2 txr-c9e0e299e93a5c4f9caf9df31aed18038650a7be.zip |
Adding find-frame function.
* unwind.c (uw_find_frame): New function.
(uw_late_init): Registered find-frame intrinsic.
* unwind.h (uw_find_frame): Declared.
* lib.h (default_arg_strict): New inline function.
Will not replace nil value with default.
* txr.1: Documented find-frame.
Diffstat (limited to 'unwind.h')
-rw-r--r-- | unwind.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -127,6 +127,7 @@ void uw_pop_until(uw_frame_t *); uw_frame_t *uw_current_frame(void); uw_frame_t *uw_current_exit_point(void); val uw_get_frames(void); +val uw_find_frame(val extype, val frtype); val uw_invoke_catch(val catch_frame, val sym, struct args *); void uw_init(void); void uw_late_init(void); |