Fix confused references in if_lua.

2012-01-08 Fir de Conversatie MURAOKA Taro
Hi vim-dev list and Bram. I found a problem and a future concern on if_lua. And I wrote an attached patch to fix those. Please check it. Procedure to reproduce the problem is like this: let x = { 'v': 123 } echo x = {'v': 123 } lua x1 = vim.eval('x') lua print(x1.v) = 123 lua x1.v

Re: Fix confused references in if_lua.

2012-01-08 Fir de Conversatie Taro MURAOKA
Sorry, previous patch has problems on system which without dynamic lua. Attached new patch have fixed it. Please check it. -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: Fix confused references in if_lua.

2012-01-08 Fir de Conversatie Bram Moolenaar
Taro Muraoka wrote: Hi vim-dev list and Bram. I found a problem and a future concern on if_lua. And I wrote an attached patch to fix those. Please check it. Procedure to reproduce the problem is like this: let x = { 'v': 123 } echo x = {'v': 123 } lua x1 = vim.eval('x')

Re: Fix confused references in if_lua.

2012-01-08 Fir de Conversatie Luis Carvalho
Hi Muraoka-san, Thanks for the report and the patch. My comments follow below. I found a problem and a future concern on if_lua. And I wrote an attached patch to fix those. Please check it. Procedure to reproduce the problem is like this: let x = { 'v': 123 } echo x = {'v': 123

Re: Scheme is not Lisp (or ftplugin issues)

2012-01-08 Fir de Conversatie Ben Fritz
On Jan 6, 12:19 pm, Erik Falor ewfa...@gmail.com wrote: I believe that the inclusion of the runtime! directive within ftplugin/scheme.vim is inappropriate, and should be reconsidered. However, the greater error is that ftplugin/scheme.vim does not contain the traditional if

[patch] vim: runtime/syntax/jam.vim

2012-01-08 Fir de Conversatie Thilo Six
Hello Bram, this maintainer ist not reachbale: ralfl...@t-online.de: 194.25.134.72_does_not_like_recipient./Remote_host_said:_550-5.1.1_user_unknown/550_5.1.1_Unknown_recipient./Giving_up_on_194.25.134.72./ and also i can't mail directly to you because of: I'm afraid I wasn't able to deliver

Re: Scheme is not Lisp (or ftplugin issues)

2012-01-08 Fir de Conversatie Axioplase
Hi, stanza, and its omission does not allow the user to prevent the loading of the extra lisp scripts through the intervention of their own ~/.vim/ftplugin/scheme.vim. I'm not familiar enough with either scheme or plain Lisp (Common Lisp?) to comment on whether the inclusion is appropriate.

Re: Fix confused references in if_lua.

2012-01-08 Fir de Conversatie MURAOKA Taro
Thanks Bram. And I have one more patch. To support Lua 5.2, I have wrote another additional patch which attached. Of course it supports both 5.1 and 5.2, it is auto selected depending on included lua.h version. Best regards. 2012/1/8 Bram Moolenaar b...@moolenaar.net: Taro Muraoka wrote: