# HG changeset patch # User Bram Moolenaar # Date 1655996404 -7200 # Node ID 83cf4455be5a11033ee263deb18abefe28e64f22 # Parent 0fdf36de4018813c55254d4e5c4b104e75b225a5 patch 8.2.5153: "make uninstall" does not remove colors/lists Commit: https://github.com/vim/vim/commit/1b096b0d4a52cacf5ac782c7fa0d02cf0ef22fc4 Author: towrang Date: Thu Jun 23 15:54:09 2022 +0100 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 https://github.com/vim/vim/issues/10609) diff --git a/src/Makefile b/src/Makefile --- a/src/Makefile +++ b/src/Makefile @@ -2872,6 +2872,7 @@ uninstall_runtime: -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 --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 5153, +/**/ 5152, /**/ 5151,