summaryrefslogtreecommitdiff
path: root/src/startup.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'src/startup.tcl')
-rw-r--r--src/startup.tcl8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/startup.tcl b/src/startup.tcl
index 11ffe851..fc5f9e1a 100644
--- a/src/startup.tcl
+++ b/src/startup.tcl
@@ -95,12 +95,16 @@ add_help_text help "Tcl implementation of help command"
#a bit of backwards compatibility
proc openocd_throw {cmd} {
- return [eval $cmd]
+ set openocd_output ""
+ eval $cmd
+ return $openocd_output
}
#a bit of backwards compatibility
proc openocd {cmd} {
- return [eval $cmd]
+ set openocd_output ""
+ eval $cmd
+ return $openocd_output
}
# If a fn is unknown to Tcl, we try to execute it as an OpenOCD command