diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-16 14:20:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-16 14:20:13 +0200 |
commit | 926b5d3b302d0bcff58ede9b9aba6c21c8d2a13b (patch) | |
tree | 9912ef9ec8da461aff147c55cce5c76166a301e6 /src | |
parent | d69497413f878fbe6db1cdae45171127281acabd (diff) | |
download | vim-926b5d3b302d0bcff58ede9b9aba6c21c8d2a13b.zip |
updated for version 7.3.1205
Problem: logtalk.dict is not removed on uninstall.
Solution: Remove the file. (Kazunobu Kuriyama)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 12ff17554..39e0e32cb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2311,7 +2311,7 @@ uninstall_runtime: -rm -rf $(DEST_COMP) -rm -f $(DEST_PRINT)/*.ps -rmdir $(DEST_HELP) $(DEST_PRINT) $(DEST_COL) $(DEST_SYN) $(DEST_IND) - -rm -rf $(DEST_FTP)/*.vim $(DEST_FTP)/README.txt + -rm -rf $(DEST_FTP)/*.vim $(DEST_FTP)/README.txt $(DEST_FTP)/logtalk.dict -rm -f $(DEST_AUTO)/*.vim $(DEST_AUTO)/README.txt $(DEST_AUTO)/xml/*.vim -rm -f $(DEST_PLUG)/*.vim $(DEST_PLUG)/README.txt -rmdir $(DEST_FTP) $(DEST_AUTO)/xml $(DEST_AUTO) $(DEST_PLUG) $(DEST_RT) diff --git a/src/version.c b/src/version.c index e7fe7e43e..39a076385 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1205, +/**/ 1204, /**/ 1203, |