Blame SOURCES/7.4.348

22c937
To: vim_dev@googlegroups.com
22c937
Subject: Patch 7.4.348
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.348
22c937
Problem:    When using "J1" in 'cinoptions' a line below a continuation line
22c937
	    gets too much indent.
22c937
Solution:   Fix parenthesis in condition.
22c937
Files:	    src/misc1.c
22c937
22c937
22c937
*** ../vim-7.4.347/src/misc1.c	2014-06-26 21:24:53.134537205 +0200
22c937
--- src/misc1.c	2014-07-02 16:58:08.854208322 +0200
22c937
***************
22c937
*** 7497,7505 ****
22c937
  	     *			ldfd) {
22c937
  	     *		    }
22c937
  	     */
22c937
! 	    if (curbuf->b_ind_js || (curbuf->b_ind_keep_case_label
22c937
! 			   && cin_iscase(skipwhite(ml_get_curline()), FALSE)))
22c937
  		amount = get_indent();
22c937
  	    else
22c937
  		amount = skip_label(lnum, &l);
22c937
  
22c937
--- 7497,7507 ----
22c937
  	     *			ldfd) {
22c937
  	     *		    }
22c937
  	     */
22c937
! 	    if ((curbuf->b_ind_js || curbuf->b_ind_keep_case_label)
22c937
! 			   && cin_iscase(skipwhite(ml_get_curline()), FALSE))
22c937
  		amount = get_indent();
22c937
+ 	    else if (curbuf->b_ind_js)
22c937
+ 		amount = get_indent_lnum(lnum);
22c937
  	    else
22c937
  		amount = skip_label(lnum, &l);
22c937
  
22c937
*** ../vim-7.4.347/src/version.c	2014-06-26 22:33:47.850693627 +0200
22c937
--- src/version.c	2014-07-02 16:46:14.934197383 +0200
22c937
***************
22c937
*** 736,737 ****
22c937
--- 736,739 ----
22c937
  {   /* Add new patch number below this line */
22c937
+ /**/
22c937
+     348,
22c937
  /**/
22c937
22c937
-- 
22c937
5 out of 4 people have trouble with fractions.
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    ///