diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-11-28 22:52:10 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-11-28 22:52:10 -0800 |
commit | 4571248f624d2daefefbc565a3fcc96c4e22c547 (patch) | |
tree | 2f4cd4449c715a97df3e1eab8647a4f1114b30fd /unwind.h | |
parent | 8417226897c20af924807ae2804d6d0749941d6f (diff) | |
download | txr-4571248f624d2daefefbc565a3fcc96c4e22c547.tar.gz txr-4571248f624d2daefefbc565a3fcc96c4e22c547.tar.bz2 txr-4571248f624d2daefefbc565a3fcc96c4e22c547.zip |
Eliminate duplicated warning-suppressing function.
* eval.c (warning_continue): Static function removed.
(no_warn_expand): Use uw_muffle_warning instead of
removed function.
* parser.y (warning_continue): Static function removed.
(parse_once): Use uw_muffle_warning instead of
removed function.
* unwind.c (uw_muffle_warning): New function.
* unwind.h (uw_muffle_warning): Declared.
Diffstat (limited to 'unwind.h')
-rw-r--r-- | unwind.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -143,6 +143,7 @@ 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 *); +val uw_muffle_warning(val exc, struct args *); val uw_capture_cont(val tag, val fun, val ctx_form); void uw_push_cont_copy(uw_frame_t *, mem_t *ptr, void (*copy)(mem_t *ptr, int parent)); |