diff options
author | Sam Bingner <sam@bingner.com> | 2019-11-15 18:11:36 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2019-11-15 18:11:36 -1000 |
commit | 978d9cd248490cda55c924e66a407bb793aff400 (patch) | |
tree | f14836ff8440840ad821abe8fc86148ec2ea7f5c /data/vim/patches/8.1.1468 | |
parent | bbc833a503b148701c64ed5be79f298b7911e340 (diff) |
Update to vim_8.1.1948 and stop using patches
I mean... 1948...
Diffstat (limited to 'data/vim/patches/8.1.1468')
-rw-r--r-- | data/vim/patches/8.1.1468 | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/data/vim/patches/8.1.1468 b/data/vim/patches/8.1.1468 deleted file mode 100644 index b3afffbac..000000000 --- a/data/vim/patches/8.1.1468 +++ /dev/null @@ -1,87 +0,0 @@ -To: vim_dev@googlegroups.com -Subject: Patch 8.1.1468 -Fcc: outbox -From: Bram Moolenaar <Bram@moolenaar.net> -Mime-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit ------------- - -Patch 8.1.1468 -Problem: The generated desktop files may be invalid. -Solution: Check validity with desktop-file-validate. (Christian Brabandt, - Will Thompson, closes #4480) -Files: src/po/Makefile - - -*** ../vim-8.1.1467/src/po/Makefile 2019-05-05 21:01:47.654072636 +0200 ---- src/po/Makefile 2019-06-04 23:10:49.853378460 +0200 -*************** -*** 151,157 **** - - clean: checkclean - rm -f core core.* *.old.po *.mo *.pot sjiscorr -! rm -f LINGUAS vim.desktop gvim.desktop - - distclean: clean - ---- 151,157 ---- - - clean: checkclean - rm -f core core.* *.old.po *.mo *.pot sjiscorr -! rm -f LINGUAS vim.desktop gvim.desktop tmp_*desktop - - distclean: clean - -*************** -*** 167,179 **** - - vim.desktop: vim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template vim.desktop.in -o vim.desktop - rm -f LINGUAS - - gvim.desktop: gvim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template gvim.desktop.in -o gvim.desktop - rm -f LINGUAS - - update-po: $(LANGUAGES) - ---- 167,183 ---- - - vim.desktop: vim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template vim.desktop.in -o tmp_vim.desktop - rm -f LINGUAS -+ if command -v desktop-file-validate; then desktop-file-validate tmp_vim.desktop; fi -+ mv tmp_vim.desktop vim.desktop - - gvim.desktop: gvim.desktop.in $(POFILES) - @echo $(LANGUAGES) | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -! $(MSGFMT) --desktop -d . --template gvim.desktop.in -o tmp_gvim.desktop - rm -f LINGUAS -+ if command -v desktop-file-validate; then desktop-file-validate tmp_gvim.desktop; fi -+ mv tmp_gvim.desktop gvim.desktop - - update-po: $(LANGUAGES) - -*** ../vim-8.1.1467/src/version.c 2019-06-04 23:20:19.974043597 +0200 ---- src/version.c 2019-06-05 21:25:12.494834304 +0200 -*************** -*** 769,770 **** ---- 769,772 ---- - { /* Add new patch number below this line */ -+ /**/ -+ 1468, - /**/ - --- -I AM THANKFUL... -...for the mess to clean after a party because it means I have -been surrounded by friends. - - /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ -/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ -\\\ an exciting new programming language -- http://www.Zimbu.org /// - \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |