# HG changeset patch # User Christian Brabandt # Date 1529610305 -7200 # Node ID 01b7a627d403ea7a1ea4b026ff04af6eb27c71c9 # Parent b9e6127eafbda312ee52bafb423a64e48c89577c patch 8.1.0094: help text "usage:" is not capatalized commit https://github.com/vim/vim/commit/32aaf5ae07af1d5befaf997688fde5d6637d43f8 Author: Bram Moolenaar Date: Thu Jun 21 21:38:33 2018 +0200 patch 8.1.0094: help text "usage:" is not capatalized Problem: Help text "usage:" is not capatalized. Solution: Make it "Usage:". (closes https://github.com/vim/vim/issues/3044) diff --git a/src/main.c b/src/main.c --- a/src/main.c +++ b/src/main.c @@ -3269,7 +3269,7 @@ usage(void) #endif mch_msg(longVersion); - mch_msg(_("\n\nusage:")); + mch_msg(_("\n\nUsage:")); for (i = 0; ; ++i) { mch_msg(_(" vim [arguments] ")); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 94, +/**/ 93, /**/ 92,