mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
[FIX] strtabs interpolation in nimscript (#15172)
* [FIX] strtabs interpolation in nimscript * [TEST] Use `static` in strtabs test
This commit is contained in:
@@ -302,7 +302,7 @@ proc getValue(t: StringTableRef, flags: set[FormatFlag], key: string): string =
|
||||
when defined(js) or defined(nimscript):
|
||||
result = ""
|
||||
else:
|
||||
if useEnvironment in flags: result = os.getEnv(key).string
|
||||
if useEnvironment in flags: result = getEnv(key).string
|
||||
else: result = ""
|
||||
if result.len == 0:
|
||||
if useKey in flags: result = '$' & key
|
||||
|
||||
Reference in New Issue
Block a user