Did i describe this so bad?
Thats
not about
some error from a specific user. What i describe is
a general bug and
how to trigger it. On my system at least.
Quotes becoming part of the string is only correct if you
SET a variable. I am talking about
calling it, where the quotes are needed if the variable string contains white space characters. See:
You must be registered to see the links
Having no closing quotes on a var is like a missing python closing parens. Example from UnRen:
I have no proof so far, but i believe this could be the reason for all the problems with
special chars in the path name.
Really? My editors search function does this for me.
Line 213, 238, 351:
cd %gamedir%
or
cd %currentdir%
-
no quotes
Line 307:
cd "%gamedir%"
- quotes
Which variant is the correct one? With or without quotes? I believe WITH quotes is it. The
orginal UnRen uses just two times unquoted var calls (titel and titel echo lines) and there where not much problems with the app back in the days...
(All echo lines from 312-342 have also %gamedir% in use, but i think they're unimportant for the correct function.)