From 2f1228463aa9ff62814f9732561b1849e5f01f75 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 31 Aug 2020 23:18:00 +0200 Subject: patch 8.2.1558: signs test fails Problem: Signs test fails. Solution: Add missing change to sign.c. --- src/sign.c | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/sign.c b/src/sign.c index fb452b30c5..fd373b5c3e 100644 --- a/src/sign.c +++ b/src/sign.c @@ -517,6 +517,7 @@ buf_get_signattrs(win_T *wp, linenr_T lnum, sign_attrs_T *sattr) sattr->sat_texthl = syn_id2attr(sp->sn_text_hl); if (sp->sn_line_hl > 0) sattr->sat_linehl = syn_id2attr(sp->sn_line_hl); + sattr->sat_priority = sign->se_priority; // If there is another sign next with the same priority, may // combine the text and the line highlighting. diff --git a/src/version.c b/src/version.c index 214ee2a8ed..411a889d56 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1558, /**/ 1557, /**/ -- cgit v1.2.3