- patchlevel 515
This commit is contained in:
parent
4e2007dd61
commit
e5d40b7245
@ -366,7 +366,7 @@ Individual patches for Vim 7.3:
|
|||||||
7688 7.3.333 "." repeats a Visual delete by byte size instead of characters
|
7688 7.3.333 "." repeats a Visual delete by byte size instead of characters
|
||||||
1710 7.3.334 latest MingW complains about XSUBPP referencing itself
|
1710 7.3.334 latest MingW complains about XSUBPP referencing itself
|
||||||
1532 7.3.335 changing 'imdisable' in Insert mode takes effect only later
|
1532 7.3.335 changing 'imdisable' in Insert mode takes effect only later
|
||||||
30504 7.3.336 encoding in tags file causes trouble
|
30156 7.3.336 encoding in tags file causes trouble (NOW IN LATIN1)
|
||||||
1876 7.3.337 no screen update after resizing xterm until character typed
|
1876 7.3.337 no screen update after resizing xterm until character typed
|
||||||
2851 7.3.338 using getchar() in an expression mapping doesn't work well
|
2851 7.3.338 using getchar() in an expression mapping doesn't work well
|
||||||
1762 7.3.339 "make shadow" doesn't link all test files
|
1762 7.3.339 "make shadow" doesn't link all test files
|
||||||
@ -502,3 +502,47 @@ Individual patches for Vim 7.3:
|
|||||||
1557 7.3.469 compiler warning for unused argument
|
1557 7.3.469 compiler warning for unused argument
|
||||||
1892 7.3.470 test 62 fails when compiled without GUI and X11
|
1892 7.3.470 test 62 fails when compiled without GUI and X11
|
||||||
2817 7.3.471 can't abort listing placed signs
|
2817 7.3.471 can't abort listing placed signs
|
||||||
|
2792 7.3.472 crash when using ":redraw" in a BufEnter autocmd
|
||||||
|
2119 7.3.473 'cursorbind' does not work correctly with 'virtualedit' "all"
|
||||||
|
1682 7.3.474 gcc 4 build with Perl fails
|
||||||
|
3670 7.3.475 in terminal with few colors omnicomplete menu is hard to see
|
||||||
|
1874 7.3.476 backspacing in a Visual block selection causes problems.
|
||||||
|
1725 7.3.477 scrolling back at the more prompt shows the wrong text
|
||||||
|
1354 7.3.478 memory leak when the ':rv!' command reads a dict or list
|
||||||
|
6622 7.3.479 'cursorline' line number highlighting can't be set separately
|
||||||
|
6208 7.3.480 when using ":qa" priority of changed buffers could be better
|
||||||
|
1945 7.3.481 changing 'virtualedit' in an operator function does not work
|
||||||
|
1827 7.3.482 with 'cursorbind' set moving up/down does not keep the column
|
||||||
|
3003 7.3.483 (after 7.3.477) more prompt shows up too ofte.
|
||||||
|
2206 7.3.484 "vim --help" does not mention -E and --echo-wid
|
||||||
|
1677 7.3.485 LDFLAGS isn't passed on to building xxd
|
||||||
|
1803 7.3.486 build error with mingw64 on Windows 7
|
||||||
|
19665 7.3.487 column position is reset unnecessarily when setting an option
|
||||||
|
1458 7.3.488 ":help!" in a help file does not work as documented
|
||||||
|
2783 7.3.489 Insert mode CTRL-] does not expand abbr. from a mapping
|
||||||
|
74085 7.3.490 Lua interface: Member confusion, missing luaeval()
|
||||||
|
7738 7.3.491 no tests for Lua
|
||||||
|
14093 7.3.492 can't indent conditions separately from function arguments
|
||||||
|
1565 7.3.493 (after 7.3.492) two unused variables
|
||||||
|
6811 7.3.494 (after 7.3.491) can't build with Lua 9.1 or dynamic Lua
|
||||||
|
3559 7.3.495 (after 7.3.492) compiler warnings
|
||||||
|
2262 7.3.496 MS-DOS: tests fail when "diff" trips over line separators
|
||||||
|
1606 7.3.497 crash when doing ":python print", compiled with gcc -O2
|
||||||
|
2021 7.3.498 the behavior of "- register changes depending on 'clipboard'
|
||||||
|
2561 7.3.499 may wait for the wrong child process to terminate
|
||||||
|
1414 7.3.500 Ming makefile unconditionally sets WINVER
|
||||||
|
1761 7.3.501 error for "flush" not being defined when using Ruby command
|
||||||
|
2010 7.3.502 Netbeans insert halfway a line actually appends to the line
|
||||||
|
1288 7.3.503 (after 7.3.501) warning for unused argument
|
||||||
|
2602 7.3.504 commands in help files are not highlighted
|
||||||
|
3376 7.3.505 test 11 fails on MS-Windows in some versions
|
||||||
|
3040 7.3.506 GTK gives an error when selecting a non-existent file
|
||||||
|
5241 7.3.507 overwriting existing file without question from file dialog
|
||||||
|
2838 7.3.508 default for v:register is not set
|
||||||
|
8621 7.3.509 'autochdir' causes :vimgrep to fail
|
||||||
|
1462 7.3.510 test 77 fails on Solaris 7
|
||||||
|
1563 7.3.511 crash when using FileReadCmd autocmd that does :e {file}
|
||||||
|
2049 7.3.512 undofile() returns a useless name when passed an empty string
|
||||||
|
3925 7.3.513 cannot use CTRL-E and CTRL-Y with "r"
|
||||||
|
7792 7.3.514 no completion for :history command
|
||||||
|
2073 7.3.515 'wildignorecase' only applies to the last part of the path
|
||||||
|
93
vim.spec
93
vim.spec
@ -18,7 +18,7 @@
|
|||||||
#used for pre-releases:
|
#used for pre-releases:
|
||||||
%define beta %{nil}
|
%define beta %{nil}
|
||||||
%define vimdir vim73%{?beta}
|
%define vimdir vim73%{?beta}
|
||||||
%define patchlevel 471
|
%define patchlevel 515
|
||||||
|
|
||||||
Summary: The VIM editor
|
Summary: The VIM editor
|
||||||
URL: http://www.vim.org/
|
URL: http://www.vim.org/
|
||||||
@ -527,6 +527,50 @@ Patch468: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.468
|
|||||||
Patch469: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.469
|
Patch469: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.469
|
||||||
Patch470: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.470
|
Patch470: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.470
|
||||||
Patch471: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.471
|
Patch471: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.471
|
||||||
|
Patch472: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.472
|
||||||
|
Patch473: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.473
|
||||||
|
Patch474: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.474
|
||||||
|
Patch475: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.475
|
||||||
|
Patch476: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.476
|
||||||
|
Patch477: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.477
|
||||||
|
Patch478: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.478
|
||||||
|
Patch479: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.479
|
||||||
|
Patch480: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.480
|
||||||
|
Patch481: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.481
|
||||||
|
Patch482: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.482
|
||||||
|
Patch483: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.483
|
||||||
|
Patch484: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.484
|
||||||
|
Patch485: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.485
|
||||||
|
Patch486: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.486
|
||||||
|
Patch487: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.487
|
||||||
|
Patch488: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.488
|
||||||
|
Patch489: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.489
|
||||||
|
Patch490: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.490
|
||||||
|
Patch491: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.491
|
||||||
|
Patch492: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.492
|
||||||
|
Patch493: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.493
|
||||||
|
Patch494: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.494
|
||||||
|
Patch495: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.495
|
||||||
|
Patch496: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.496
|
||||||
|
Patch497: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.497
|
||||||
|
Patch498: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.498
|
||||||
|
Patch499: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.499
|
||||||
|
Patch500: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.500
|
||||||
|
Patch501: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.501
|
||||||
|
Patch502: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.502
|
||||||
|
Patch503: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.503
|
||||||
|
Patch504: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.504
|
||||||
|
Patch505: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.505
|
||||||
|
Patch506: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.506
|
||||||
|
Patch507: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.507
|
||||||
|
Patch508: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.508
|
||||||
|
Patch509: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.509
|
||||||
|
Patch510: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.510
|
||||||
|
Patch511: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.511
|
||||||
|
Patch512: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.512
|
||||||
|
Patch513: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.513
|
||||||
|
Patch514: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.514
|
||||||
|
Patch515: ftp://ftp.vim.org/pub/vim/patches/7.3/7.3.515
|
||||||
|
|
||||||
Patch3000: vim-7.3-syntax.patch
|
Patch3000: vim-7.3-syntax.patch
|
||||||
Patch3002: vim-7.1-nowarnings.patch
|
Patch3002: vim-7.1-nowarnings.patch
|
||||||
@ -1143,6 +1187,50 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
|||||||
%patch469 -p0
|
%patch469 -p0
|
||||||
%patch470 -p0
|
%patch470 -p0
|
||||||
%patch471 -p0
|
%patch471 -p0
|
||||||
|
%patch472 -p0
|
||||||
|
%patch473 -p0
|
||||||
|
%patch474 -p0
|
||||||
|
%patch475 -p0
|
||||||
|
%patch476 -p0
|
||||||
|
%patch477 -p0
|
||||||
|
%patch478 -p0
|
||||||
|
%patch479 -p0
|
||||||
|
%patch480 -p0
|
||||||
|
%patch481 -p0
|
||||||
|
%patch482 -p0
|
||||||
|
%patch483 -p0
|
||||||
|
%patch484 -p0
|
||||||
|
%patch485 -p0
|
||||||
|
%patch486 -p0
|
||||||
|
%patch487 -p0
|
||||||
|
%patch488 -p0
|
||||||
|
%patch489 -p0
|
||||||
|
%patch490 -p0
|
||||||
|
%patch491 -p0
|
||||||
|
%patch492 -p0
|
||||||
|
%patch493 -p0
|
||||||
|
%patch494 -p0
|
||||||
|
%patch495 -p0
|
||||||
|
%patch496 -p0
|
||||||
|
%patch497 -p0
|
||||||
|
%patch498 -p0
|
||||||
|
%patch499 -p0
|
||||||
|
%patch500 -p0
|
||||||
|
%patch501 -p0
|
||||||
|
%patch502 -p0
|
||||||
|
%patch503 -p0
|
||||||
|
%patch504 -p0
|
||||||
|
%patch505 -p0
|
||||||
|
%patch506 -p0
|
||||||
|
%patch507 -p0
|
||||||
|
%patch508 -p0
|
||||||
|
%patch509 -p0
|
||||||
|
%patch510 -p0
|
||||||
|
%patch511 -p0
|
||||||
|
%patch512 -p0
|
||||||
|
%patch513 -p0
|
||||||
|
%patch514 -p0
|
||||||
|
%patch515 -p0
|
||||||
|
|
||||||
|
|
||||||
# install spell files
|
# install spell files
|
||||||
@ -1597,6 +1685,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/icons/hicolor/*/apps/*
|
%{_datadir}/icons/hicolor/*/apps/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue May 08 2012 Karsten Hopp <karsten@redhat.com> 7.3.515-1
|
||||||
|
- patchlevel 515
|
||||||
|
|
||||||
* Fri Mar 16 2012 Karsten Hopp <karsten@redhat.com> 7.3.471-1
|
* Fri Mar 16 2012 Karsten Hopp <karsten@redhat.com> 7.3.471-1
|
||||||
- patchlevel 471
|
- patchlevel 471
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user