- patchlevel 9

This commit is contained in:
Karsten Hopp 2013-08-28 10:44:07 +02:00
parent bbb8474eca
commit 5f412171af
2 changed files with 13 additions and 2 deletions

View File

@ -12,8 +12,8 @@ Before patching, change to the top Vim directory, where the "src" and
"runtime" directories are located. "runtime" directories are located.
Depending on the version of "patch" that you use, you may have add an Depending on the version of "patch" that you use, you may have add an
argument to make it patch the right file: argument to make it patch the right file:
patch -p < 7.3.001 patch -p < 7.4.001
patch -p0 < 7.3.001 patch -p0 < 7.4.001
After applying a patch, you need to compile Vim. There are no patches After applying a patch, you need to compile Vim. There are no patches
for binaries. for binaries.
@ -29,3 +29,7 @@ Individual patches for Vim 7.4:
2680 7.4.003 memory access error in Ruby syntax highlighting 2680 7.4.003 memory access error in Ruby syntax highlighting
7145 7.4.004 when closing a window fails ":bwipe" may hang 7145 7.4.004 when closing a window fails ":bwipe" may hang
1391 7.4.005 "vaB" while 'virtualedit' is set selects the wrong area 1391 7.4.005 "vaB" while 'virtualedit' is set selects the wrong area
1952 7.4.006 mkdir("foo/bar/", "p") gives an error message
2538 7.4.007 creating a preview window on startup messes up the screen
2176 7.4.008 new regexp engine can't be interrupted
2051 7.4.009 too easy to write a file was not decrypted (yet)

View File

@ -202,6 +202,10 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
%patch003 -p0 %patch003 -p0
%patch004 -p0 %patch004 -p0
%patch005 -p0 %patch005 -p0
%patch006 -p0
%patch007 -p0
%patch008 -p0
%patch009 -p0
# install spell files # install spell files
%if %{withvimspell} %if %{withvimspell}
@ -701,6 +705,9 @@ rm -rf %{buildroot}
%{_datadir}/icons/hicolor/*/apps/* %{_datadir}/icons/hicolor/*/apps/*
%changelog %changelog
* Wed Aug 28 2013 Karsten Hopp <karsten@redhat.com> 7.4.009-1
- patchlevel 009
* Wed Aug 21 2013 Karsten Hopp <karsten@redhat.com> 7.4.5-1 * Wed Aug 21 2013 Karsten Hopp <karsten@redhat.com> 7.4.5-1
- patchlevel 5 - patchlevel 5
- when closing a window fails ":bwipe" may hang - when closing a window fails ":bwipe" may hang