rpms/vim/devel 7.2.012, NONE, 1.1 README.patches, 1.110, 1.111 vim.spec, 1.218, 1.219

Karsten Hopp karsten at fedoraproject.org
Mon Sep 8 11:20:35 UTC 2008


Author: karsten

Update of /cvs/extras/rpms/vim/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23259

Modified Files:
	README.patches vim.spec 
Added Files:
	7.2.012 
Log Message:
- patchlevel 012


--- NEW FILE 7.2.012 ---
To: vim-dev at vim.org
Subject: Patch 7.2.012
Fcc: outbox
From: Bram Moolenaar <Bram at 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 at 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    ///


Index: README.patches
===================================================================
RCS file: /cvs/extras/rpms/vim/devel/README.patches,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- README.patches	25 Aug 2008 08:38:15 -0000	1.110
+++ README.patches	8 Sep 2008 11:20:05 -0000	1.111
@@ -29,5 +29,12 @@
   1462  7.2.002  leaking memory when displaying menus
   3663  7.2.003  typo in translated message, message 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
+ 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


Index: vim.spec
===================================================================
RCS file: /cvs/extras/rpms/vim/devel/vim.spec,v
retrieving revision 1.218
retrieving revision 1.219
diff -u -r1.218 -r1.219
--- vim.spec	25 Aug 2008 08:38:15 -0000	1.218
+++ vim.spec	8 Sep 2008 11:20:05 -0000	1.219
@@ -18,7 +18,7 @@
 #used for pre-releases:
 %define beta %{nil}
 %define vimdir vim72%{?beta}
-%define patchlevel 006
+%define patchlevel 012
 
 Summary: The VIM editor
 URL:     http://www.vim.org/
@@ -62,6 +62,12 @@
 Patch004: 7.2.004
 Patch005: 7.2.005
 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
 Patch3002: vim-7.1-nowarnings.patch
@@ -200,6 +206,12 @@
 %patch004 -p0
 %patch005 -p0
 %patch006 -p0
+%patch007 -p0
+%patch008 -p0
+%patch009 -p0
+%patch010 -p0
+%patch011 -p0
+%patch012 -p0
 
 # install spell files
 %if %{withvimspell}
@@ -618,6 +630,9 @@
 %{_datadir}/icons/hicolor/*/apps/*
 
 %changelog
+* Mon Sep 08 2008 Karsten Hopp <karsten at redhat.com> 7.2.012-1
+- patchlevel 12
+
 * Mon Aug 25 2008 Karsten Hopp <karsten at redhat.com> 7.2.006-1
 - patchlevel 6
 




More information about the fedora-extras-commits mailing list