I was just testing "TCC 20.11.46 x64 Windows 10 [Version 6.3.14393]" and noticed some of my find scripts no longer worked compared to TCC 15.
Simplified reproduction below:
TCC 20 will print out: ffind /e"(?i-)str" %filename%
TCC 15 will print out: ffind /e"(?i-)str" "C:\filename.txt"
Obviously the latter is what I want. :)
What went wrong with TCC 20? Is it a bug, or am I doing it wrong somehow?
Simplified reproduction below:
Code:
@echo off
set re=(?i-)str
set filename="C:\filename.txt"
echo ffind /e"%re%" %filename%
TCC 20 will print out: ffind /e"(?i-)str" %filename%
TCC 15 will print out: ffind /e"(?i-)str" "C:\filename.txt"
Obviously the latter is what I want. :)
What went wrong with TCC 20? Is it a bug, or am I doing it wrong somehow?