Ken Takata wrote: > 2013/7/19 Fri 1:34:32 UTC+9 [email protected] wrote: > > latest svn. > > > > Borland builds but the executable fails to show menus, toolbars, etc. > > > > Error message pops up: > > > > Error detected while processing C:\build\vim\runtime\menu.vim: > > > > > > line 156: > > > > E121: Undefined variable: paste#paste_cmd > > > > E15: Invalid expression: 'vnoremenu <script> &Edit.&Paste<Tab>"+gP^I' . > > paste#paste_cmd['v'] > > I found the cause of this problem. It was caused by 7.3.1182. > The type of st.st_mode is unsigned short on MSVC, but it is signed short > on BCC. Thus, when casting st_mode to long, the value may become a minus > which is handled as an error. > > I also found some problems with BCC: > * Can not build with python as reported here: > https://groups.google.com/d/topic/vim_use/_layXHD5hUk/discussion > * Some temporary files are not ignored by mercurial. > * When build with 'make -f Make_bc5.mak DEBUG=yes', DEBUG is defined but > _DEBUG is not defined. TRACE macros defined in os_win32.h cannot be used > because of this. > > Attached patch fixes them.
Thanks! I'll put it in the todo list. -- hundred-and-one symptoms of being an internet addict: 64. The remote to the T.V. is missing...and you don't even care. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
