diff options
author | stephan <stephan@noemail.net> | 2025-04-25 11:27:13 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2025-04-25 11:27:13 +0000 |
commit | ef90c4209cefa1391c7217aee5978a53b3b8152b (patch) | |
tree | cf2fbeb76aa94a24a176d196321cc8836ee745ff /autosetup | |
parent | d3b39b18d09df4c780e72190f68d11b776bcc4a7 (diff) | |
download | sqlite-ef90c4209cefa1391c7217aee5978a53b3b8152b.tar.gz sqlite-ef90c4209cefa1391c7217aee5978a53b3b8152b.zip |
Teaish internal API tweaks and ensure that -encoding utf-8 is used when source'ing test scripts.
FossilOrigin-Name: f878f578f8fac95a939e3eabe8b64d5627d2ccd98de1e28081b9bca42ffee027
Diffstat (limited to 'autosetup')
-rw-r--r-- | autosetup/proj.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autosetup/proj.tcl b/autosetup/proj.tcl index 1ccc63280..3ebb5f250 100644 --- a/autosetup/proj.tcl +++ b/autosetup/proj.tcl @@ -1760,13 +1760,13 @@ proc proj-validate-no-unresolved-ats {args} { } # -# @proj-first-found fileList tgtVar +# @proj-first-found tgtVar fileList # # Searches $fileList for an existing file. If one is found, its name is # assigned to tgtVar and 1 is returned, else tgtVar is not modified # and 0 is returned. # -proc proj-first-file-found {fileList tgtVar} { +proc proj-first-file-found {tgtVar fileList} { upvar $tgtVar tgt foreach f $fileList { if {[file exists $f]} { |