Blame SOURCES/7.4.597

22c937
To: vim_dev@googlegroups.com
22c937
Subject: Patch 7.4.597
22c937
Fcc: outbox
22c937
From: Bram Moolenaar <Bram@moolenaar.net>
22c937
Mime-Version: 1.0
22c937
Content-Type: text/plain; charset=UTF-8
22c937
Content-Transfer-Encoding: 8bit
22c937
------------
22c937
22c937
Patch 7.4.597
22c937
Problem:    Cannot change the result of systemlist().
22c937
Solution:   Initialize v_lock. (Yukihiro Nakadaira)
22c937
Files:	    src/eval.c
22c937
22c937
22c937
*** ../vim-7.4.596/src/eval.c	2015-01-14 19:00:33.842522901 +0100
22c937
--- src/eval.c	2015-01-27 13:49:22.123112397 +0100
22c937
***************
22c937
*** 6007,6012 ****
22c937
--- 6007,6013 ----
22c937
  
22c937
  /*
22c937
   * Allocate a list item.
22c937
+  * It is not initialized, don't forget to set v_lock.
22c937
   */
22c937
      listitem_T *
22c937
  listitem_alloc()
22c937
***************
22c937
*** 18713,18718 ****
22c937
--- 18714,18720 ----
22c937
  		goto errret;
22c937
  	    }
22c937
  	    li->li_tv.v_type = VAR_STRING;
22c937
+ 	    li->li_tv.v_lock = 0;
22c937
  	    li->li_tv.vval.v_string = s;
22c937
  	    list_append(list, li);
22c937
  	}
22c937
*** ../vim-7.4.596/src/version.c	2015-01-27 13:33:18.737649629 +0100
22c937
--- src/version.c	2015-01-27 13:48:25.883727538 +0100
22c937
***************
22c937
*** 743,744 ****
22c937
--- 743,746 ----
22c937
  {   /* Add new patch number below this line */
22c937
+ /**/
22c937
+     597,
22c937
  /**/
22c937
22c937
-- 
22c937
"Microsoft is like Coke.  It's a secret formula, all the money is from
22c937
distribution, and their goal is to get Coke everywhere.  Open source is like
22c937
selling water.  There are water companies like Perrier and Poland Spring, but
22c937
you're competing with something that's free."   -- Carl Howe
22c937
22c937
22c937
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
22c937
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
22c937
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
22c937
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///