cd g:\some will change drive
to G and dir to some.
This is not correct.
It should only change the dir
associated with drive G. And
only as soon as you later type
G:, you should get into g:\some.
comcom32 only calls chdir().
I think djgpp's chdir also changes
drive, while we only need to update
CDS of a particular drive.
cd g:\some
will change drive toG
and dir tosome
. This is not correct. It should only change the dir associated with driveG
. And only as soon as you later typeG:
, you should get intog:\some
.comcom32 only calls
chdir()
. I think djgpp's chdir also changes drive, while we only need to update CDS of a particular drive.