- patchlevel 012
This commit is contained in:
parent
7bbe6f2d21
commit
9cbe62ff78
53
7.2.012
Normal file
53
7.2.012
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
To: vim-dev@vim.org
|
||||||
|
Subject: Patch 7.2.012
|
||||||
|
Fcc: outbox
|
||||||
|
From: Bram Moolenaar <Bram@moolenaar.net>
|
||||||
|
Mime-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=ISO-8859-1
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
------------
|
||||||
|
|
||||||
|
Patch 7.2.012
|
||||||
|
Problem: Compiler warnings when building with startup timing.
|
||||||
|
Solution: Add type casts.
|
||||||
|
Files: src/ex_cmds2.c
|
||||||
|
|
||||||
|
|
||||||
|
*** ../vim-7.2.011/src/ex_cmds2.c Sun Jul 13 19:36:09 2008
|
||||||
|
--- src/ex_cmds2.c Tue Sep 2 11:14:41 2008
|
||||||
|
***************
|
||||||
|
*** 3145,3152 ****
|
||||||
|
verbose_leave();
|
||||||
|
}
|
||||||
|
#ifdef STARTUPTIME
|
||||||
|
! vim_snprintf(IObuff, IOSIZE, "sourcing %s", fname);
|
||||||
|
! time_msg(IObuff, &tv_start);
|
||||||
|
time_pop(&tv_rel);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
--- 3145,3152 ----
|
||||||
|
verbose_leave();
|
||||||
|
}
|
||||||
|
#ifdef STARTUPTIME
|
||||||
|
! vim_snprintf((char *)IObuff, IOSIZE, "sourcing %s", fname);
|
||||||
|
! time_msg((char *)IObuff, &tv_start);
|
||||||
|
time_pop(&tv_rel);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
*** ../vim-7.2.011/src/version.c Sun Sep 7 13:54:31 2008
|
||||||
|
--- src/version.c Sun Sep 7 15:49:00 2008
|
||||||
|
***************
|
||||||
|
*** 678,679 ****
|
||||||
|
--- 678,681 ----
|
||||||
|
{ /* Add new patch number below this line */
|
||||||
|
+ /**/
|
||||||
|
+ 12,
|
||||||
|
/**/
|
||||||
|
|
||||||
|
--
|
||||||
|
He who laughs last, thinks slowest.
|
||||||
|
|
||||||
|
/// 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 ///
|
@ -29,5 +29,12 @@ Individual patches for Vim 7.2:
|
|||||||
1462 7.2.002 leaking memory when displaying menus
|
1462 7.2.002 leaking memory when displaying menus
|
||||||
3663 7.2.003 typo in translated message, message not translated
|
3663 7.2.003 typo in translated message, message not translated
|
||||||
3413 7.2.004 Cscope help message is not translated
|
3413 7.2.004 Cscope help message is not translated
|
||||||
4638 7.2.005 profiling: Using pointer instead of value, allocating zero bytes, memory not freed
|
4638 7.2.005 a few problems when profiling
|
||||||
1552 7.2.006 HTML files are not recognized by contents
|
1552 7.2.006 HTML files are not recognized by contents
|
||||||
|
16735 7.2.007 (extra) minor issues for VMS
|
||||||
|
1947 7.2.008 wrong window count when using :bunload in a BufHidden autocmd
|
||||||
|
2245 7.2.009 can't compile with Perl 5.10 on MS-aindows
|
||||||
|
5415 7.2.010 "K" in Visual mode does not properly escape all characters
|
||||||
|
2873 7.2.011 error when inserting a float value from expression register
|
||||||
|
1444 7.2.012 compiler warnings when building with startup timing
|
||||||
|
4157 7.2.013 hang when waiting for X selection, consuming lots of CPU time
|
||||||
|
17
vim.spec
17
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 006
|
%define patchlevel 012
|
||||||
|
|
||||||
Summary: The VIM editor
|
Summary: The VIM editor
|
||||||
URL: http://www.vim.org/
|
URL: http://www.vim.org/
|
||||||
@ -62,6 +62,12 @@ Patch003: 7.2.003
|
|||||||
Patch004: 7.2.004
|
Patch004: 7.2.004
|
||||||
Patch005: 7.2.005
|
Patch005: 7.2.005
|
||||||
Patch006: 7.2.006
|
Patch006: 7.2.006
|
||||||
|
Patch007: 7.2.007
|
||||||
|
Patch008: 7.2.008
|
||||||
|
Patch009: 7.2.009
|
||||||
|
Patch010: 7.2.010
|
||||||
|
Patch011: 7.2.011
|
||||||
|
Patch012: 7.2.012
|
||||||
|
|
||||||
Patch3000: vim-7.0-syntax.patch
|
Patch3000: vim-7.0-syntax.patch
|
||||||
Patch3002: vim-7.1-nowarnings.patch
|
Patch3002: vim-7.1-nowarnings.patch
|
||||||
@ -200,6 +206,12 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
|||||||
%patch004 -p0
|
%patch004 -p0
|
||||||
%patch005 -p0
|
%patch005 -p0
|
||||||
%patch006 -p0
|
%patch006 -p0
|
||||||
|
%patch007 -p0
|
||||||
|
%patch008 -p0
|
||||||
|
%patch009 -p0
|
||||||
|
%patch010 -p0
|
||||||
|
%patch011 -p0
|
||||||
|
%patch012 -p0
|
||||||
|
|
||||||
# install spell files
|
# install spell files
|
||||||
%if %{withvimspell}
|
%if %{withvimspell}
|
||||||
@ -618,6 +630,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/icons/hicolor/*/apps/*
|
%{_datadir}/icons/hicolor/*/apps/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Sep 08 2008 Karsten Hopp <karsten@redhat.com> 7.2.012-1
|
||||||
|
- patchlevel 12
|
||||||
|
|
||||||
* Mon Aug 25 2008 Karsten Hopp <karsten@redhat.com> 7.2.006-1
|
* Mon Aug 25 2008 Karsten Hopp <karsten@redhat.com> 7.2.006-1
|
||||||
- patchlevel 6
|
- patchlevel 6
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user