Re: Bug in chaining dictionary function calls

2006-07-06 Thread Charles E Campbell Jr
Hari Krishna Dara wrote: I found a problem with chaining function calls through the new dictionary functions. Here is some code demonstrate the problem, if you execute this code, the last line generates an E488 error, where as the previous lines combines (they are equivalent) works fine. I c

Re: Bug in chaining dictionary function calls

2006-06-23 Thread Hari Krishna Dara
On Thu, 22 Jun 2006 at 2:50pm, James Vega wrote: > On Thu, Jun 22, 2006 at 11:11:51AM -0700, Hari Krishna Dara wrote: > > > > On Thu, 22 Jun 2006 at 5:46am, Richard Emberson wrote: > > > > > I reported this as bug number 1492165, > > > https://sourceforge.net/tracker/?atid=391887&group_id=27891&f

Re: Bug in chaining dictionary function calls

2006-06-22 Thread James Vega
On Thu, Jun 22, 2006 at 11:11:51AM -0700, Hari Krishna Dara wrote: > > On Thu, 22 Jun 2006 at 5:46am, Richard Emberson wrote: > > > I reported this as bug number 1492165, > > https://sourceforge.net/tracker/?atid=391887&group_id=27891&func=browse > > Didn't know that bugs can now be reported at

Re: Bug in chaining dictionary function calls

2006-06-22 Thread Hari Krishna Dara
On Thu, 22 Jun 2006 at 5:46am, Richard Emberson wrote: > I reported this as bug number 1492165, > https://sourceforge.net/tracker/?atid=391887&group_id=27891&func=browse Didn't know that bugs can now be reported at sourceforge. I added my comment. Is reporting bugs on sf better for Bram? Normal

Re: Bug in chaining dictionary function calls

2006-06-22 Thread Hari Krishna Dara
On Wed, 21 Jun 2006 at 7:29pm, Eric Arnold wrote: > On 6/21/06, Hari Krishna Dara <[EMAIL PROTECTED]> wrote: > > > > Just wanted to add to the below that the problem is not just chaining > > functions, but using the return value of the function itself. If the > > function returns a dictionary (an

Re: Bug in chaining dictionary function calls

2006-06-22 Thread Hari Krishna Dara
On Thu, 22 Jun 2006 at 6:17am, Richard Emberson wrote: > Bram Moolenaar wrote: > > Hari Krishna Dara wrote: > > > >> I found a problem with chaining function calls through the new > >> dictionary functions. Here is some code demonstrate the problem, if you > >> execute this code, the last line ge

Re: Bug in chaining dictionary function calls

2006-06-22 Thread Richard Emberson
Bram Moolenaar wrote: Hari Krishna Dara wrote: I found a problem with chaining function calls through the new dictionary functions. Here is some code demonstrate the problem, if you execute this code, the last line generates an E488 error, where as the previous lines combines (they are equivale

Re: Bug in chaining dictionary function calls

2006-06-22 Thread Richard Emberson
I reported this as bug number 1492165, https://sourceforge.net/tracker/?atid=391887&group_id=27891&func=browse Hari Krishna Dara wrote: I found a problem with chaining function calls through the new dictionary functions. Here is some code demonstrate the problem, if you execute this code, the la

Re: Bug in chaining dictionary function calls

2006-06-22 Thread Bram Moolenaar
Hari Krishna Dara wrote: > I found a problem with chaining function calls through the new > dictionary functions. Here is some code demonstrate the problem, if you > execute this code, the last line generates an E488 error, where as the > previous lines combines (they are equivalent) works fine.

Re: Bug in chaining dictionary function calls

2006-06-21 Thread Eric Arnold
On 6/21/06, Hari Krishna Dara <[EMAIL PROTECTED]> wrote: Just wanted to add to the below that the problem is not just chaining functions, but using the return value of the function itself. If the function returns a dictionary (and probably a list), you can't use it to access its members, so some

Re: Bug in chaining dictionary function calls

2006-06-21 Thread Hari Krishna Dara
Just wanted to add to the below that the problem is not just chaining functions, but using the return value of the function itself. If the function returns a dictionary (and probably a list), you can't use it to access its members, so something like this will also fail: let t.T()['abc'] = 'xyz'

Bug in chaining dictionary function calls

2006-06-21 Thread Hari Krishna Dara
I found a problem with chaining function calls through the new dictionary functions. Here is some code demonstrate the problem, if you execute this code, the last line generates an E488 error, where as the previous lines combines (they are equivalent) works fine. let tt = {} function! tt.TT() e