diff src/sign.c @ 22017:2794a2666769 v8.2.1558

patch 8.2.1558: signs test fails Commit: https://github.com/vim/vim/commit/2f1228463aa9ff62814f9732561b1849e5f01f75 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 31 23:18:00 2020 +0200 patch 8.2.1558: signs test fails Problem: Signs test fails. Solution: Add missing change to sign.c.
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Aug 2020 23:30:04 +0200
parents 4dfd00f481fb
children acda780ffc3e
line wrap: on
line diff
--- a/src/sign.c
+++ b/src/sign.c
@@ -517,6 +517,7 @@ buf_get_signattrs(win_T *wp, linenr_T ln
 		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.