diff options
| author | Maxime Coste <mawww@kakoune.org> | 2020-02-05 20:51:17 +1100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2020-02-05 20:51:17 +1100 |
| commit | e348219fee7640fd97f19192a85d19b5f4d36aaf (patch) | |
| tree | dbf12f00c54efd565ba161650ee966a4f4fc05ee /src | |
| parent | fef9f69a70c152295c90b86efb9e4b92bfbed763 (diff) | |
| parent | 144380de8c95e1e07b2056707c1c353e5df208e9 (diff) | |
Merge remote-tracking branch 'omasanori/startup_info_version'
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cc | 2 |
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) |
