patch 8.2.0635: when using 256 colors DarkYellow does not show expected color
Problem: When using 256 colors DarkYellow does not show expected color.
Solution: Use color 3 instead of 130. (Romain Lafourcade, closes #5985)
diff --git a/src/highlight.c b/src/highlight.c
index 9c9e445..64f37a4 100644
--- a/src/highlight.c
+++ b/src/highlight.c
@@ -524,7 +524,7 @@
75, 11, 78, 15, -1};
// for xterm with 256 colors...
static int color_numbers_256[28] = {0, 4, 2, 6,
- 1, 5, 130, 130,
+ 1, 5, 130, 3,
248, 248, 7, 7,
242, 242,
12, 81, 10, 121,
diff --git a/src/version.c b/src/version.c
index b05d3d8..2fcabeb 100644
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 635,
+/**/
634,
/**/
633,