patch 8.2.5153: "make uninstall" does not remove colors/lists
Problem: "make uninstall" does not remove colors/lists.
Solution: Add a line to the Makefile. (closes #10609)
diff --git a/src/Makefile b/src/Makefile
index 9399121..a63b9ce 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2872,6 +2872,7 @@
-rm -f $(SYS_OPTWIN_FILE)
-rm -f $(DEST_COL)/*.vim $(DEST_COL)/README.txt
-rm -rf $(DEST_COL)/tools
+ -rm -rf $(DEST_COL)/lists
-rm -f $(DEST_SYN)/*.vim $(DEST_SYN)/README.txt
-rm -f $(DEST_IND)/*.vim $(DEST_IND)/README.txt
-rm -rf $(DEST_MACRO)
diff --git a/src/version.c b/src/version.c
index 647daa2..27da2ee 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 5153,
+/**/
5152,
/**/
5151,