steve donovan:
> for (int param = 0; param < maxParam; param++) {
> SString paramText(param + 1);
> SString paramTextVal = props.Get(paramText.c_str());
> if (paramTextVal.length() > 0) {
> if (paramTextVal.contains(" ")) {
> SString val;
> val += "\"";
> val += paramTextVal;
> val += "\"";
> paramTextVal = val;
> }
> parameters += paramTextVal;
> parameters += " ";
> }
> }
Needs documentation.
> BTW, the existing line in lua.properties is problematic:
>
> command.go.*.lua=Lua-5.0.exe "$(FileNameExt)"
The .exe shouldn't be needed on Windows either.
> The Lua people are now just calling their executable 'lua', now that
> the 5.0-5.1 transistion is over.
Someone that uses command line Lua on Windows should say whether this works
command.go.*.lua=lua "$(FileNameExt)"
Neil
_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest