since I have the habit ( from zOS and friends systems ) of using as a string delimiter the "
i made a quick and dirty change to cmdparse.ypp in order to have it accept as filename delimiters both " and '
here it is ...
else if ( ((prxCmd -> strptr + lCmdPtr) == '\"' ) ||
((prxCmd -> strptr + lCmdPtr) == '\'' ) )
{
char zzdelim;
zzdelim = (prxCmd -> strptr + lCmdPtr);
lCmdPtr++;
while ((prxCmd -> strptr + lCmdPtr) != zzdelim)
regards
enrico
P.S.
tested and working !
Anonymous