- patchlevel 411
This commit is contained in:
parent
105fb0950b
commit
854b0ac6e6
47
7.2.411
Normal file
47
7.2.411
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
To: vim-dev@vim.org
|
||||||
|
Subject: Patch 7.2.411
|
||||||
|
Fcc: outbox
|
||||||
|
From: Bram Moolenaar <Bram@moolenaar.net>
|
||||||
|
Mime-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
------------
|
||||||
|
|
||||||
|
Patch 7.2.411
|
||||||
|
Problem: When parsing 'cino' a comma isn't skipped properly.
|
||||||
|
Solution: Skip the comma. (Lech Lorens)
|
||||||
|
Files: src/misc1.c
|
||||||
|
|
||||||
|
|
||||||
|
*** ../vim-7.2.410/src/misc1.c 2010-03-02 12:37:01.000000000 +0100
|
||||||
|
--- src/misc1.c 2010-03-23 18:18:15.000000000 +0100
|
||||||
|
***************
|
||||||
|
*** 6270,6275 ****
|
||||||
|
--- 6270,6277 ----
|
||||||
|
case 'l': ind_keep_case_label = n; break;
|
||||||
|
case '#': ind_hash_comment = n; break;
|
||||||
|
}
|
||||||
|
+ if (*options == ',')
|
||||||
|
+ ++options;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* remember where the cursor was when we started */
|
||||||
|
*** ../vim-7.2.410/src/version.c 2010-03-23 18:06:47.000000000 +0100
|
||||||
|
--- src/version.c 2010-03-23 18:22:13.000000000 +0100
|
||||||
|
***************
|
||||||
|
*** 683,684 ****
|
||||||
|
--- 683,686 ----
|
||||||
|
{ /* Add new patch number below this line */
|
||||||
|
+ /**/
|
||||||
|
+ 411,
|
||||||
|
/**/
|
||||||
|
|
||||||
|
--
|
||||||
|
BRIDGEKEEPER: What is your favorite editor?
|
||||||
|
GAWAIN: Emacs ... No, Viiiiiiiiiiimmmmmmm!
|
||||||
|
"Monty Python and the Holy editor wars" PYTHON (MONTY) SOFTWARE LTD
|
||||||
|
|
||||||
|
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
||||||
|
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
||||||
|
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
||||||
|
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|
@ -442,3 +442,4 @@ Individual patches for Vim 7.2:
|
|||||||
2152 7.2.408 ":g/the/s/a/b/" can set '[ and '] marks to an unchanged line
|
2152 7.2.408 ":g/the/s/a/b/" can set '[ and '] marks to an unchanged line
|
||||||
1814 7.2.409 summary of number of substitutes is incorrect for ":folddo"
|
1814 7.2.409 summary of number of substitutes is incorrect for ":folddo"
|
||||||
2526 7.2.410 highlighting directories for completion doesn't work properly
|
2526 7.2.410 highlighting directories for completion doesn't work properly
|
||||||
|
1462 7.2.411 when parsing 'cino' a comma isn't skipped properly
|
||||||
|
7
vim.spec
7
vim.spec
@ -18,7 +18,7 @@
|
|||||||
#used for pre-releases:
|
#used for pre-releases:
|
||||||
%define beta %{nil}
|
%define beta %{nil}
|
||||||
%define vimdir vim72%{?beta}
|
%define vimdir vim72%{?beta}
|
||||||
%define patchlevel 410
|
%define patchlevel 411
|
||||||
|
|
||||||
Summary: The VIM editor
|
Summary: The VIM editor
|
||||||
URL: http://www.vim.org/
|
URL: http://www.vim.org/
|
||||||
@ -476,6 +476,7 @@ Patch407: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.407
|
|||||||
Patch408: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.408
|
Patch408: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.408
|
||||||
Patch409: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.409
|
Patch409: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.409
|
||||||
Patch410: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.410
|
Patch410: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.410
|
||||||
|
Patch411: ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.411
|
||||||
|
|
||||||
Patch3000: vim-7.0-syntax.patch
|
Patch3000: vim-7.0-syntax.patch
|
||||||
Patch3002: vim-7.1-nowarnings.patch
|
Patch3002: vim-7.1-nowarnings.patch
|
||||||
@ -1024,6 +1025,7 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
|||||||
%patch408 -p0
|
%patch408 -p0
|
||||||
%patch409 -p0
|
%patch409 -p0
|
||||||
%patch410 -p0
|
%patch410 -p0
|
||||||
|
%patch411 -p0
|
||||||
|
|
||||||
|
|
||||||
# install spell files
|
# install spell files
|
||||||
@ -1488,6 +1490,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/icons/hicolor/*/apps/*
|
%{_datadir}/icons/hicolor/*/apps/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Mar 24 2010 Karsten Hopp <karsten@redhat.com> 7.2.411-1
|
||||||
|
- patchlevel 411
|
||||||
|
|
||||||
* Tue Mar 23 2010 Karsten Hopp <karsten@redhat.com> 7.2.410-1
|
* Tue Mar 23 2010 Karsten Hopp <karsten@redhat.com> 7.2.410-1
|
||||||
- patchlevel 410
|
- patchlevel 410
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user