# HG changeset patch # User Bram Moolenaar # Date 1560085205 -7200 # Node ID 00299e2deae287405804692bd5c4b59a8e511b16 # Parent c228bdff551af4b5ce151d6a305a918540b2bcf9 patch 8.1.1506: syntax error in Travis config commit https://github.com/vim/vim/commit/b29cfb8c28a66604ebb468c73d86669870a3b06b Author: Bram Moolenaar Date: Sun Jun 9 14:51:30 2019 +0200 patch 8.1.1506: syntax error in Travis config Problem: Syntax error in Travis config. Solution: Set AUDIODEV in another section. diff --git a/.travis.yml b/.travis.yml --- a/.travis.yml +++ b/.travis.yml @@ -10,9 +10,6 @@ compiler: - gcc env: - global: - # pretend to play sounds - AUDIODEV=null - &tiny-nogui BUILD=yes TEST=test COVERAGE=no FEATURES=tiny "CONFOPT='--disable-gui'" SHADOWOPT= SRCDIR=./src CHECK_AUTOCONF=no - &tiny @@ -141,6 +138,8 @@ before_script: if [[ "${TRAVIS_OS_NAME}" = "linux" ]]; then export DISPLAY=:99.0 sh -e /etc/init.d/xvfb start && sleep 3 + # pretend to play sound + export AUDIODEV=null fi script: diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1506, +/**/ 1505, /**/ 1504,