From a62d8f2271312ba955e839509590f5a5975b1b49 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Thu, 11 Aug 2011 12:10:54 +1000 Subject: [PATCH] Evaluate 'script' in the global scope Scripts sourced via 'script' should evaluate in the global scope to make it easy to set and reference global variables. Signed-off-by: Steve Bennett --- src/helper/startup.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index 2e2982cca..e2ea27d0a 100644 --- a/src/helper/startup.tcl +++ b/src/helper/startup.tcl @@ -53,9 +53,9 @@ proc find {filename} { add_usage_text find "" add_help_text find "print full path to file according to OpenOCD search rules" -# Run script +# Find and run a script proc script {filename} { - source [find $filename] + uplevel #0 source [find $filename] } add_help_text script "filename of OpenOCD script (tcl) to run" add_usage_text script "" -- 2.30.2