Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

TCC 13 vs. TCC 14 different FFIND /E"d$" output

It seems that TCC version 13's FFIND /E"d$" output is correct but version 14's is not.
Code:
V:\>ver

TCC 14.00.32 Windows 7 [Version 6.1.7601]

V:\>echo d>aa

V:\>ffind /e"d" aa

---- V:\aa
d

1 line in 1 file

V:\>ffind /e"d$" aa

0 lines in 0 files
^^^^^^^^^  should be 1 line as for /e"d" (wrong)

V:\>V:\TCMD13\Tcc.exe

TCC 13.04.63 Windows 7 [Version 6.1.7601]

Active code page: 1252
V:\>ffind /e"d$" aa

---- V:\aa
d

1 line in 1 file

V:\>ffind /e"d" aa

---- V:\aa
d

1 line in 1 file
^^^^^^^^ it is 1 line as for /E"d" (correct)

V:\>diff V:\TCMD14\TCMD.INI V:\TCMD13\TCMD.INI
27d26
< SplitterWindows=No
65d63
< CompleteAllFiles=No

V:\>
 

Similar threads

Back
Top