Mercurial > hg > octave-nkf
diff src/debug.cc @ 9377:610bf90fce2a
update unwind_protect usage everywhere
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 23 Jun 2009 08:22:13 +0200 |
parents | 94ae487acd1b |
children | bbe033dcfe13 |
line wrap: on
line diff
--- a/src/debug.cc +++ b/src/debug.cc @@ -850,7 +850,7 @@ { octave_value_list retval; - unwind_protect::begin_frame ("Fdbstack"); + unwind_protect::frame_id_t uwp_frame = unwind_protect::begin_frame (); octave_idx_type curr_frame = -1; @@ -914,7 +914,7 @@ } } - unwind_protect::run_frame ("Fdbstack"); + unwind_protect::run_frame (uwp_frame); return retval; }