diff --git a/src/terminal.c b/src/terminal.c index 6b8d35394e..eca9f1bd86 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -475,9 +475,12 @@ term_start(typval_T *argvar, jobopt_T *opt, int forceit) channel_set_nonblock(term->tl_job->jv_channel, PART_IN); #ifdef FEAT_AUTOCMD - ++curbuf->b_locked; - apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); - --curbuf->b_locked; + if (!opt->jo_hidden) + { + ++curbuf->b_locked; + apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf); + --curbuf->b_locked; + } #endif if (old_curbuf != NULL) diff --git a/src/version.c b/src/version.c index adedd8541e..52479de74c 100644 --- a/src/version.c +++ b/src/version.c @@ -771,6 +771,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1515, /**/ 1514, /**/