comparison src/version.c @ 17500:b7d85c5af64e v8.1.1748

patch 8.1.1748: :args output is not aligned commit https://github.com/vim/vim/commit/74da39373c90fcb390068903b5bbb93ce7ac16fa Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 25 21:52:39 2019 +0200 patch 8.1.1748: :args output is not aligned Problem: :args output is not aligned. Solution: Output a line break after the last item in a row.
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 Jul 2019 22:00:04 +0200
parents a31c27cbc0d6
children bc6088919610
comparison
equal deleted inserted replaced
17499:a44909886d08 17500:b7d85c5af64e
776 }; 776 };
777 777
778 static int included_patches[] = 778 static int included_patches[] =
779 { /* Add new patch number below this line */ 779 { /* Add new patch number below this line */
780 /**/ 780 /**/
781 1748,
782 /**/
781 1747, 783 1747,
782 /**/ 784 /**/
783 1746, 785 1746,
784 /**/ 786 /**/
785 1745, 787 1745,
4437 else 4439 else
4438 { 4440 {
4439 while (msg_col % width) 4441 while (msg_col % width)
4440 msg_putchar(' '); 4442 msg_putchar(' ');
4441 } 4443 }
4444 }
4445 else
4446 {
4447 // this row is out of items, thus at the end of the row
4448 if (msg_col > 0 && cur_row < nrow)
4449 msg_putchar('\n');
4450 ++cur_row;
4442 } 4451 }
4443 } 4452 }
4444 } 4453 }
4445 4454
4446 void 4455 void