• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revision83cf4455be5a11033ee263deb18abefe28e64f22 (tree)
Time2022-06-24 00:00:04
AuthorBram Moolenaar <Bram@vim....>
CommiterBram Moolenaar

Log Message

patch 8.2.5153: "make uninstall" does not remove colors/lists

Commit: https://github.com/vim/vim/commit/1b096b0d4a52cacf5ac782c7fa0d02cf0ef22fc4
Author: towrang <towrang@outlook.com>
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)

Change Summary

Incremental Difference

diff -r 0fdf36de4018 -r 83cf4455be5a src/Makefile
--- a/src/Makefile Thu Jun 23 14:15:04 2022 +0200
+++ b/src/Makefile Thu Jun 23 17:00:04 2022 +0200
@@ -2872,6 +2872,7 @@
28722872 -rm -f $(SYS_OPTWIN_FILE)
28732873 -rm -f $(DEST_COL)/*.vim $(DEST_COL)/README.txt
28742874 -rm -rf $(DEST_COL)/tools
2875+ -rm -rf $(DEST_COL)/lists
28752876 -rm -f $(DEST_SYN)/*.vim $(DEST_SYN)/README.txt
28762877 -rm -f $(DEST_IND)/*.vim $(DEST_IND)/README.txt
28772878 -rm -rf $(DEST_MACRO)
diff -r 0fdf36de4018 -r 83cf4455be5a src/version.c
--- a/src/version.c Thu Jun 23 14:15:04 2022 +0200
+++ b/src/version.c Thu Jun 23 17:00:04 2022 +0200
@@ -735,6 +735,8 @@
735735 static int included_patches[] =
736736 { /* Add new patch number below this line */
737737 /**/
738+ 5153,
739+/**/
738740 5152,
739741 /**/
740742 5151,
Show on old repository browser