Blame SOURCES/7.4.283

22c937
To: vim_dev@googlegroups.com
22c937
Subject: Patch 7.4.283
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.283 (after 7.4.276)
22c937
Problem:    Compiler warning about unused variable. (Charles Cooper)
22c937
Solution:   Move the variable inside the #if block.
22c937
Files:	    src/ex_cmds.c
22c937
22c937
22c937
*** ../vim-7.4.282/src/ex_cmds.c	2014-05-07 15:10:17.657108310 +0200
22c937
--- src/ex_cmds.c	2014-05-09 20:31:16.414789550 +0200
22c937
***************
22c937
*** 1551,1559 ****
22c937
  {
22c937
      char_u	*buf;
22c937
      long_u	len;
22c937
-     int		is_fish_shell;
22c937
  
22c937
  #if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
22c937
      /* Account for fish's different syntax for subshells */
22c937
      is_fish_shell = (fnamecmp(get_isolated_shell_name(), "fish") == 0);
22c937
      if (is_fish_shell)
22c937
--- 1551,1560 ----
22c937
  {
22c937
      char_u	*buf;
22c937
      long_u	len;
22c937
  
22c937
  #if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
22c937
+     int		is_fish_shell;
22c937
+ 
22c937
      /* Account for fish's different syntax for subshells */
22c937
      is_fish_shell = (fnamecmp(get_isolated_shell_name(), "fish") == 0);
22c937
      if (is_fish_shell)
22c937
*** ../vim-7.4.282/src/version.c	2014-05-08 11:46:23.621757543 +0200
22c937
--- src/version.c	2014-05-09 20:32:06.538789989 +0200
22c937
***************
22c937
*** 736,737 ****
22c937
--- 736,739 ----
22c937
  {   /* Add new patch number below this line */
22c937
+ /**/
22c937
+     283,
22c937
  /**/
22c937
22c937
-- 
22c937
Don't drink and drive.  You might hit a bump and spill your beer.
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    ///