# HG changeset patch # User Bram Moolenaar # Date 1637784004 -3600 # Node ID 58a7c651c3132dfbbb0000d25339a85feee81280 # Parent 488094d12d7469569e2d892168da4b5a7c8f6773 patch 8.2.3667: building libvterm fails with MSVC Commit: https://github.com/vim/vim/commit/510d8e6056d89d903511c4498afec23f76b4f2a4 Author: Bram Moolenaar Date: Wed Nov 24 19:55:46 2021 +0000 patch 8.2.3667: building libvterm fails with MSVC Problem: Building libvterm fails with MSVC. Solution: Don't use C99 construct. diff --git a/src/libvterm/src/state.c b/src/libvterm/src/state.c --- a/src/libvterm/src/state.c +++ b/src/libvterm/src/state.c @@ -1768,12 +1768,14 @@ static void osc_selection(VTermState *st if(!frag.len || (state->selection.buflen - bufcur) < 3) { if(bufcur) { - (*state->selection.callbacks->set)(state->tmp.selection.mask, (VTermStringFragment){ - .str = state->selection.buffer, - .len = bufcur, - .initial = state->tmp.selection.state == SELECTION_SET_INITIAL, - .final = frag.final, - }, state->selection.user); + VTermStringFragment setfrag = { + state->selection.buffer, // str + bufcur, // len + state->tmp.selection.state == SELECTION_SET_INITIAL, // initial + frag.final // final + }; + (*state->selection.callbacks->set)(state->tmp.selection.mask, + setfrag, state->selection.user); state->tmp.selection.state = SELECTION_SET; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3667, +/**/ 3666, /**/ 3665,