aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-10-18 18:42:32 +0800
committerGitHub <noreply@github.com>2022-10-18 03:42:32 -0700
commit97164748b933a351423824b1988c863cc5994cdb (patch)
treef3e72fe8219e608023fdca79e3a212bedc474271 /src/nvim/version.c
parent72b2353ab2f01ea96d7526c19f05571688d81e13 (diff)
downloadrneovim-97164748b933a351423824b1988c863cc5994cdb.tar.gz
rneovim-97164748b933a351423824b1988c863cc5994cdb.tar.bz2
rneovim-97164748b933a351423824b1988c863cc5994cdb.zip
fix(intro): omit patch version in ":help news" item #20713
Because maintenance releases share the same news.txt as the last non-maintenance release.
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r--src/nvim/version.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 32e15f200a..f0e2f92ba4 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -2228,8 +2228,8 @@ void intro_message(int colon)
N_("type :q<Enter> to exit "),
N_("type :help<Enter> for help "),
"",
- N_("type :help news<Enter> to see changes in")
- " v" STR(NVIM_VERSION_MAJOR) "." STR(NVIM_VERSION_MINOR) "." STR(NVIM_VERSION_PATCH),
+ N_("type :help news<Enter> to see changes in")
+ " v" STR(NVIM_VERSION_MAJOR) "." STR(NVIM_VERSION_MINOR),
"",
N_("Help poor children in Uganda!"),
N_("type :help iccf<Enter> for information "),