Andre Arpin wrote:
props result are unexpected
Given that I have the following two lines exist in my property file:

a=x;y
b.$(a)=z

why is the output from a macro

            print(props["a"])
            print (props["b.x"])

is
x;y

instead of
x:y
z

I don't think it will do that type of expansion on the left of the = ; it will do some interpreting of wildcards (like "*.cpp"), but you should not expect full expansion of properties like on the right side.

I am trying to resolve something like which lexer is being used by lua looking at
Props[“lexer.lua”] which I expect to be lua but which is also nil.

Hopefully I am just missing the obvious.

Why do you expect a "lexer.lua" property to be set at all?

Robert Roessler
[EMAIL PROTECTED]
http://www.rftp.com
_______________________________________________
Scintilla-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scintilla-interest

Reply via email to