i wish you'd test :version after messing with version.c -- it is still horked when you execute a :ver inside a running vim instance -- it looks fine when you run vim --version on the command line so it's better than it was
On Thu, Jul 25, 2019 at 2:53 PM Bram Moolenaar <[email protected]> wrote: > > > Patch 8.1.1748 (after 8.1.1737) > Problem: :args output is not aligned. > Solution: Output a line break after the last item in a row. > Files: src/version.c > > > *** ../vim-8.1.1747/src/version.c 2019-07-25 20:52:59.780237300 +0200 > --- src/version.c 2019-07-25 21:50:26.887673097 +0200 > *************** > *** 4440,4445 **** > --- 4442,4454 ---- > msg_putchar(' '); > } > } > + else > + { > + // this row is out of items, thus at the end of the row > + if (msg_col > 0 && cur_row < nrow) > + msg_putchar('\n'); > + ++cur_row; > + } > } > } > > *** ../vim-8.1.1747/src/version.c 2019-07-25 20:52:59.780237300 +0200 > --- src/version.c 2019-07-25 21:50:26.887673097 +0200 > *************** > *** 779,780 **** > --- 779,782 ---- > { /* Add new patch number below this line */ > + /**/ > + 1748, > /**/ > > -- > OLD WOMAN: King of the WHO? > ARTHUR: The Britons. > OLD WOMAN: Who are the Britons? > "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD > > /// 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]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/vim_dev/201907251952.x6PJqwEo031035%40masaka.moolenaar.net. -- -- 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/CALfSX1y6F3Ghwu9eK_qy81%2BySTQKEL_D7kGrce8e3VO8otQLvw%40mail.gmail.com.
