Re: [Factor-talk] Documentation bug for button-down

2007-05-30 Thread Slava Pestov
You're right, and the documentation was wrong. Thanks for pointing it out. Slava On 30-May-07, at 1:10 AM, Jeff Ervin wrote: > Oh, I see. The first slot is the delegate slot that all tuples have. I > was confused because the button-down documentation gives an example as > T{ button-down f 1 }.

Re: [Factor-talk] Documentation bug for button-down

2007-05-29 Thread Jeff Ervin
Oh, I see. The first slot is the delegate slot that all tuples have. I was confused because the button-down documentation gives an example as T{ button-down f 1 }. - This SF.net email is sponsored by DB2 Express Download DB2

[Factor-talk] Documentation bug for button-down

2007-05-29 Thread Jeff Ervin
The documentation for button-down in version .89 says a button-down tuple has two slots: a sequence of modifiers and a button number. However it appears there is actually a third parameter between these two as the following code demonstrates T{ button-down f f 1 } works but T{ button-down f 1 }