# HG changeset patch # User Bram Moolenaar # Date 1580061604 -3600 # Node ID cb4543c0e89a90c685edea4775600f8b6d3cff28 # Parent dde53931f9e2b9c6b9cebe125b81ca3b78f58c50 patch 8.2.0153: warning shows when listing version info Commit: https://github.com/vim/vim/commit/b3de5114acdc5859cf068d5fde9d7cb2bb34aa31 Author: Bram Moolenaar Date: Sun Jan 26 18:56:34 2020 +0100 patch 8.2.0153: warning shows when listing version info Problem: Warning shows when listing version info. Solution: Use "-u NONE". (Ozaki Kiichi, closes https://github.com/vim/vim/issues/5534) diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -139,8 +139,8 @@ script: - | if [[ "${BUILD}" = "yes" ]]; then "${SRCDIR}"/vim --version - "${SRCDIR}"/vim --clean --not-a-term -esNX -V1 -S ci/if_ver-1.vim -c quit - "${SRCDIR}"/vim --clean --not-a-term -esNX -V1 -S ci/if_ver-2.vim -c quit + "${SRCDIR}"/vim -u NONE --not-a-term -esNX -V1 -S ci/if_ver-1.vim -c quit + "${SRCDIR}"/vim -u NONE --not-a-term -esNX -V1 -S ci/if_ver-2.vim -c quit fi - echo -e "\\033[33;1mTesting Vim\\033[0m" && echo -en "travis_fold:start:test\\r\\033[0K" - do_test make ${SHADOWOPT} ${TEST} && FOLD_MARKER=travis_fold diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 153, +/**/ 152, /**/ 151,