SOURCES: 7.1.034 (NEW), 7.1.035 (NEW) - new

adamg adamg at pld-linux.org
Tue Jul 24 13:00:14 CEST 2007


Author: adamg                        Date: Tue Jul 24 11:00:14 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- new

---- Files affected:
SOURCES:
   7.1.034 (NONE -> 1.1)  (NEW), 7.1.035 (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/7.1.034
diff -u /dev/null SOURCES/7.1.034:1.1
--- /dev/null	Tue Jul 24 13:00:14 2007
+++ SOURCES/7.1.034	Tue Jul 24 13:00:09 2007
@@ -0,0 +1,116 @@
+To: vim-dev at vim.org
+Subject: patch 7.1.034
+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.1.034
+Problem:    Win64: A few compiler warnings.  Problems with optimizer.
+Solution:   Use int instead of size_t.  Disable the optimizer in one function.
+	    (George V.  Reilly)
+Files:	    src/eval.c, src/spell.c
+
+
+*** ../vim-7.1.033/src/eval.c	Tue Jul 17 16:31:15 2007
+--- src/eval.c	Wed Jul 11 19:50:27 2007
+***************
+*** 992,1011 ****
+      char_u	*value;
+      int		value_len;
+  {
+!     size_t	len;
+  
+      if (redir_lval == NULL)
+  	return;
+  
+      if (value_len == -1)
+! 	len = STRLEN(value);	/* Append the entire string */
+      else
+! 	len = value_len;	/* Append only "value_len" characters */
+  
+!     if (ga_grow(&redir_ga, (int)len) == OK)
+      {
+  	mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
+! 	redir_ga.ga_len += (int)len;
+      }
+      else
+  	var_redir_stop();
+--- 992,1011 ----
+      char_u	*value;
+      int		value_len;
+  {
+!     int		len;
+  
+      if (redir_lval == NULL)
+  	return;
+  
+      if (value_len == -1)
+! 	len = (int)STRLEN(value);	/* Append the entire string */
+      else
+! 	len = value_len;		/* Append only "value_len" characters */
+  
+!     if (ga_grow(&redir_ga, len) == OK)
+      {
+  	mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
+! 	redir_ga.ga_len += len;
+      }
+      else
+  	var_redir_stop();
+*** ../vim-7.1.033/src/spell.c	Thu May 10 18:45:53 2007
+--- src/spell.c	Sat Jul 14 17:17:52 2007
+***************
+*** 7829,7835 ****
+  # if (_MSC_VER <= 1200)
+  /* This line is required for VC6 without the service pack.  Also see the
+   * matching #pragma below. */
+! /* # pragma optimize("", off) */
+  # endif
+  #endif
+  
+--- 7829,7835 ----
+  # if (_MSC_VER <= 1200)
+  /* This line is required for VC6 without the service pack.  Also see the
+   * matching #pragma below. */
+!  #  pragma optimize("", off)
+  # endif
+  #endif
+  
+***************
+*** 7859,7865 ****
+  
+  #ifdef _MSC_VER
+  # if (_MSC_VER <= 1200)
+! /* # pragma optimize("", on) */
+  # endif
+  #endif
+  
+--- 7859,7865 ----
+  
+  #ifdef _MSC_VER
+  # if (_MSC_VER <= 1200)
+!  #  pragma optimize("", on)
+  # endif
+  #endif
+  
+*** ../vim-7.1.033/src/version.c	Tue Jul 24 09:50:22 2007
+--- src/version.c	Tue Jul 24 09:47:17 2007
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     34,
+  /**/
+
+-- 
+How To Keep A Healthy Level Of Insanity:
+17. When the money comes out the ATM, scream "I won!, I won! 3rd
+    time this week!!!!!"
+
+ /// 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: SOURCES/7.1.035
diff -u /dev/null SOURCES/7.1.035:1.1
--- /dev/null	Tue Jul 24 13:00:14 2007
+++ SOURCES/7.1.035	Tue Jul 24 13:00:09 2007
@@ -0,0 +1,52 @@
+To: vim-dev at vim.org
+Subject: patch 7.1.035
+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.1.035
+Problem:    After ":s/./&/#" all listed lines have a line number. (Yakov
+	    Lerner)
+Solution:   Reset the line number flag when not using the "&" flag.
+Files:	    src/ex_cmds.c
+
+
+*** ../vim-7.1.034/src/ex_cmds.c	Tue Jul 10 17:25:20 2007
+--- src/ex_cmds.c	Sat Jul 14 14:39:38 2007
+***************
+*** 4316,4321 ****
+--- 4316,4322 ----
+  	do_error = TRUE;
+  	do_print = FALSE;
+  	do_count = FALSE;
++ 	do_number = FALSE;
+  	do_ic = 0;
+      }
+      while (*cmd)
+*** ../vim-7.1.034/src/version.c	Tue Jul 24 10:44:10 2007
+--- src/version.c	Tue Jul 24 11:15:09 2007
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     35,
+  /**/
+
+-- 
+The startling truth finally became apparent, and it was this: Numbers
+written on restaurant checks within the confines of restaurants do not follow
+the same mathematical laws as numbers written on any other pieces of paper in
+any other parts of the Universe.  This single statement took the scientific
+world by storm.  So many mathematical conferences got held in such good
+restaurants that many of the finest minds of a generation died of obesity and
+heart failure, and the science of mathematics was put back by years.
+		-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
+
+ /// 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    ///
================================================================


More information about the pld-cvs-commit mailing list