diff options
Diffstat (limited to 'lib/pure/subexes.nim')
-rw-r--r-- | lib/pure/subexes.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/subexes.nim b/lib/pure/subexes.nim index 3e5e36b38..92797744a 100644 --- a/lib/pure/subexes.nim +++ b/lib/pure/subexes.nim @@ -39,12 +39,12 @@ type f: cstring num, i, lineLen: int -template call(x: stmt) = +template call(x: stmt) {.immediate.} = p.i = i x i = p.i -template callNoLineLenTracking(x: stmt) = +template callNoLineLenTracking(x: stmt) {.immediate.} = let oldLineLen = p.lineLen p.i = i x |