# HG changeset patch # User Bram Moolenaar # Date 1668011403 -3600 # Node ID 7c47ea0dc0800bf028c3903ab859493a5ec48e2b # Parent 270d41abfa3d8a9cbc1b7ce3f95065d3c3fec202 patch 9.0.0848: help item for --log argument is not aligned nicely Commit: https://github.com/vim/vim/commit/0fd7be7f951b639312c9cb3917c7e61ba3b55a60 Author: K.Takata Date: Wed Nov 9 16:29:24 2022 +0000 patch 9.0.0848: help item for --log argument is not aligned nicely Problem: Help item for --log argument is not aligned nicely. Solution: Add a Tab. (Ken Takata, closes https://github.com/vim/vim/issues/11521) diff --git a/src/main.c b/src/main.c --- a/src/main.c +++ b/src/main.c @@ -3588,7 +3588,7 @@ usage(void) main_msg(_("--startuptime \tWrite startup timing messages to ")); #endif #ifdef FEAT_JOB_CHANNEL - main_msg(_("--log \tStart logging to early")); + main_msg(_("--log \t\tStart logging to early")); #endif #ifdef FEAT_VIMINFO main_msg(_("-i \t\tUse instead of .viminfo")); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 848, +/**/ 847, /**/ 846,