summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2020-02-05 20:51:17 +1100
committerMaxime Coste <mawww@kakoune.org>2020-02-05 20:51:17 +1100
commite348219fee7640fd97f19192a85d19b5f4d36aaf (patch)
treedbf12f00c54efd565ba161650ee966a4f4fc05ee /src
parentfef9f69a70c152295c90b86efb9e4b92bfbed763 (diff)
parent144380de8c95e1e07b2056707c1c353e5df208e9 (diff)
Merge remote-tracking branch 'omasanori/startup_info_version'
Diffstat (limited to 'src')
-rw-r--r--src/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc
index dabbb7b2..c95c5736 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -107,7 +107,7 @@ void show_startup_info(Client* local_client, int last_version)
DisplayLineList info;
for (auto note : version_notes)
{
- if (note.version and note.version < last_version)
+ if (note.version and note.version <= last_version)
continue;
if (not note.version)