}
 
     foreach t [ target names ] {
-       # For compatiblity with 'old scripts'
-       $t invoke-event old-pre_reset
-
-       # New event script.
-       $t invoke-event reset-start
+               # For compatiblity with 'old scripts'
+               $t invoke-event old-pre_reset
+       
+               # New event script.
+               $t invoke-event reset-start
     }
 
     # Init the tap controller.
 
     # Examine all targets.
     foreach t [ target names ] {
-       $t arp_examine
+               $t arp_examine
     }
 
     # Let the C code know we are asserting reset.
     foreach t [ target names ] {
-       $t invoke-event reset-assert-pre
-       # C code needs to know if we expect to 'halt'
-       $t arp_reset assert $halt
-       $t invoke-event reset-assert-post
+               $t invoke-event reset-assert-pre
+               # C code needs to know if we expect to 'halt'
+               $t arp_reset assert $halt
+               $t invoke-event reset-assert-post
     }
 
     # Now de-assert reset.
     foreach t [ target names ] {
-       $t invoke-event reset-deassert-pre
-       # Again, de-assert code needs to know..
-       $t arp_reset deassert $halt
-       $t invoke-event reset-deassert-post
+               $t invoke-event reset-deassert-pre
+               # Again, de-assert code needs to know..
+               $t arp_reset deassert $halt
+               $t invoke-event reset-deassert-post
     }
 
 
     # Pass 1 - Now try to halt.
     if { $halt } {
-       foreach t [target names] {
-
-           # Wait upto 1 second for target to halt.  Why 1sec? Cause
-           # the JTAG tap reset signal might be hooked to a slow
-           # resistor/capacitor circuit - and it might take a while
-           # to charge
-           
-           # Catch, but ignore any errors.
-           catch { $t arp_waitstate halted 1000 }
-           
-           # Did we succeed?
-           set s [$t curstate]
-           
-           if { 0 != [string compare $s "halted" ] } {
-               return -error [format "TARGET: %s - Not halted" $t]
-           }
-       }
+               foreach t [target names] {
+       
+                   # Wait upto 1 second for target to halt.  Why 1sec? Cause
+                   # the JTAG tap reset signal might be hooked to a slow
+                   # resistor/capacitor circuit - and it might take a while
+                   # to charge
+                   
+                   # Catch, but ignore any errors.
+                   catch { $t arp_waitstate halted 1000 }
+                   
+                   # Did we succeed?
+                   set s [$t curstate]
+                   
+                   if { 0 != [string compare $s "halted" ] } {
+                               return -error [format "TARGET: %s - Not halted" $t]
+                   }
+               }
     }
 
     #Pass 2 - if needed "init"
     if { 0 == [string compare init $MODE] } {
-       foreach t [target names] {
-           set err [catch "$t arp_waitstate halted 5000"]
-           # Did it halt?
-           if { $err == 0 } {
-                       $t invoke-event old-post_reset
-                       $t invoke-event reset-init              
-           }
-       }
+               foreach t [target names] {
+                   set err [catch "$t arp_waitstate halted 5000"]
+                   # Did it halt?
+                   if { $err == 0 } {
+                               $t invoke-event old-post_reset
+                               $t invoke-event reset-init              
+                   }
+               }
     }
 
     foreach t [ target names ] {
-       $t invoke-event reset-end
+               $t invoke-event reset-end
     }
 }
 
        sprintf( buf, "ocd_process_reset %s", n->name );
        retval = Jim_Eval( interp, buf );
 
-       if(retval != JIM_ERR){
+       if(retval != JIM_OK) {
+               Jim_PrintErrorMessage(interp);
                return ERROR_FAIL;
        }
 
                                           e,
                                           Jim_Nvp_value2name_simple( nvp_target_event, e )->name,
                                           Jim_GetString( teap->body, NULL ) );
-                       Jim_EvalObj( interp, teap->body );
+                       if (Jim_EvalObj( interp, teap->body )!=JIM_OK)
+                       {
+                               Jim_PrintErrorMessage(interp);
+                       }
                }
                teap = teap->next;
        }
                        }
 
                        if( goi->isconfigure ){
-                               if( goi->argc == 0 ){
+                               if( goi->argc != 1 ){
                                        Jim_WrongNumArgs( goi->interp, goi->argc, goi->argv, "-event ?event-name? ?EVENT-BODY?");
                                        return JIM_ERR;
                                }