comparison src/main.c @ 14153:01b7a627d403 v8.1.0094

patch 8.1.0094: help text "usage:" is not capatalized commit https://github.com/vim/vim/commit/32aaf5ae07af1d5befaf997688fde5d6637d43f8 Author: Bram Moolenaar <Bram@vim.org> 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)
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Jun 2018 21:45:05 +0200
parents cb731d098241
children ddf160d82971
comparison
equal deleted inserted replaced
14152:b9e6127eafbd 14153:01b7a627d403
3267 #if defined(UNIX) || defined(VMS) 3267 #if defined(UNIX) || defined(VMS)
3268 reset_signals(); /* kill us with CTRL-C here, if you like */ 3268 reset_signals(); /* kill us with CTRL-C here, if you like */
3269 #endif 3269 #endif
3270 3270
3271 mch_msg(longVersion); 3271 mch_msg(longVersion);
3272 mch_msg(_("\n\nusage:")); 3272 mch_msg(_("\n\nUsage:"));
3273 for (i = 0; ; ++i) 3273 for (i = 0; ; ++i)
3274 { 3274 {
3275 mch_msg(_(" vim [arguments] ")); 3275 mch_msg(_(" vim [arguments] "));
3276 mch_msg(_(use[i])); 3276 mch_msg(_(use[i]));
3277 if (i == (sizeof(use) / sizeof(char_u *)) - 1) 3277 if (i == (sizeof(use) / sizeof(char_u *)) - 1)