--- In [EMAIL PROTECTED], "ed park" <[EMAIL PROTECTED]> wrote: > > in 3.8.15, pprofolder and scriptfolder still return values with > backslashes, not foward slashes or doubled backslashes. is this > intentional?
It is intentional and correct. Only quoted strings use escape sequences. > > using the standard configuration, it does break straightforward code > like: > > birds = &(pprofolder)/sounds/birds That is why the above code is wrong (even with quotes around the string it is still wrong). Mixing &() and expressions will lead to problems like that the above and is a bad idea, in general. Correct code is birds = pprofolder ++ "/sounds/birds" (I think is it OK to mix / and \ in epxresions?) ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/JV_rlB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
