Hi Bram, 2020/1/3 Fri 6:40:12 UTC+9 Bram Moolenaar wrote: > > > Patch 8.2.0080 > Problem: Globals using INIT4() are not in the tags file. > Solution: Adjust the tags command. > Files: src/configure.ac, src/auto/configure >
Similar changes are needed for Make_cyg_ming.mak and Make_mvc.mak. Please check the attached patch. Regards, Ken Takata -- -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/1de9a5da-dd4d-4804-8dbf-09102654a1a1%40googlegroups.com.
# HG changeset patch # Parent 0d61e653682cd690e5e69eef447c4dbfe7870583 diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -115,7 +115,7 @@ endif ifndef CTAGS # this assumes ctags is Exuberant ctags -CTAGS = ctags -I INIT+ --fields=+S +CTAGS = ctags -I INIT+,INIT2+,INIT3+,INIT4+,INIT5+ --fields=+S endif # Link against the shared version of libstdc++ by default. Set diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -334,7 +334,7 @@ FEATURES = HUGE !ifndef CTAGS # this assumes ctags is Exuberant ctags -CTAGS = ctags -I INIT+ --fields=+S +CTAGS = ctags -I INIT+,INIT2+,INIT3+,INIT4+,INIT5+ --fields=+S !endif !ifndef CSCOPE
