comparison src/pt-eval.cc @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children 9f0f2c226053
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
866 866
867 void 867 void
868 tree_evaluator::visit_try_catch_command (tree_try_catch_command& cmd) 868 tree_evaluator::visit_try_catch_command (tree_try_catch_command& cmd)
869 { 869 {
870 unwind_protect frame; 870 unwind_protect frame;
871 871
872 frame.protect_var (buffer_error_messages); 872 frame.protect_var (buffer_error_messages);
873 frame.protect_var (Vdebug_on_error); 873 frame.protect_var (Vdebug_on_error);
874 frame.protect_var (Vdebug_on_warning); 874 frame.protect_var (Vdebug_on_warning);
875 875
876 buffer_error_messages++; 876 buffer_error_messages++;
923 frame.protect_var (error_state); 923 frame.protect_var (error_state);
924 error_state = 0; 924 error_state = 0;
925 925
926 // We want to preserve the last statement indicator for possible 926 // We want to preserve the last statement indicator for possible
927 // backtracking. 927 // backtracking.
928 frame.add_fcn (octave_call_stack::set_statement, 928 frame.add_fcn (octave_call_stack::set_statement,
929 octave_call_stack::current_statement ()); 929 octave_call_stack::current_statement ());
930 930
931 // Similarly, if we have seen a return or break statement, allow all 931 // Similarly, if we have seen a return or break statement, allow all
932 // the cleanup code to run before returning or handling the break. 932 // the cleanup code to run before returning or handling the break.
933 // We don't have to worry about continue statements because they can 933 // We don't have to worry about continue statements because they can