If you add Z:\ to PATH, it should be expanded to Z:\;Z:\SYSTEM;Z:\BIN;Z:\DOS;Z:\4DOS;Z:\DEBUG;Z:\TEXTUTIL.
The current release (2024.10.01) expands it only if you set path in lower case.
This PR makes it case-insensitive so that it accepts PATH (or mixture like Path) as well.
If you add
Z:\
toPATH
, it should be expanded toZ:\;Z:\SYSTEM;Z:\BIN;Z:\DOS;Z:\4DOS;Z:\DEBUG;Z:\TEXTUTIL
. The current release (2024.10.01) expands it only if you setpath
in lower case. This PR makes it case-insensitive so that it acceptsPATH
(or mixture likePath
) as well.What issue(s) does this PR address?
Fixes #5232