Index: /CKEditor/branches/features/v4-domiterator/_source/core/dom/range.js
===================================================================
--- /CKEditor/branches/features/v4-domiterator/_source/core/dom/range.js	(revision 6497)
+++ /CKEditor/branches/features/v4-domiterator/_source/core/dom/range.js	(revision 6498)
@@ -1329,6 +1329,6 @@
 					{
 						this.setStartAt( blockBoundary, fromInside ?
-						                                CKEDITOR.POSITION_AFTER_START :
-						                                CKEDITOR.POSITION_AFTER_END );
+								CKEDITOR.POSITION_AFTER_START :
+								CKEDITOR.POSITION_AFTER_END );
 					}
 
Index: /CKEditor/branches/features/v4-domiterator/_source/plugins/indent/plugin.js
===================================================================
--- /CKEditor/branches/features/v4-domiterator/_source/plugins/indent/plugin.js	(revision 6497)
+++ /CKEditor/branches/features/v4-domiterator/_source/plugins/indent/plugin.js	(revision 6498)
@@ -111,6 +111,6 @@
 				// Now we can iterate over the individual items on the same tree depth.
 				var block = startContainer,
-						itemsToMove = [],
-						stopFlag = false;
+					itemsToMove = [],
+					stopFlag = false;
 				while ( !stopFlag )
 				{
@@ -128,5 +128,5 @@
 				// ancestor node that is still a list.
 				var listParents = listNode.getParents( true );
-				for ( var i = 0; i < listParents.length; i++ )
+				for ( var i = 0 ; i < listParents.length ; i++ )
 				{
 					if ( listParents[i].getName && listNodeNames[ listParents[i].getName() ] )
@@ -137,6 +137,6 @@
 				}
 				var indentOffset = self.name == 'indent' ? 1 : -1,
-						startItem = itemsToMove[0],
-						lastItem = itemsToMove[ itemsToMove.length - 1 ];
+					startItem = itemsToMove[0],
+					lastItem = itemsToMove[ itemsToMove.length - 1 ];
 
 				// Convert the list DOM tree into a one dimensional array.
@@ -153,6 +153,6 @@
 				}
 
-				for ( i = lastItem.getCustomData( 'listarray_index' ) + 1;
-				      i < listArray.length && listArray[i].indent > baseIndent; i++ )
+				for ( i = lastItem.getCustomData( 'listarray_index' ) + 1 ;
+				      i < listArray.length && listArray[i].indent > baseIndent ; i++ )
 					listArray[i].indent += indentOffset;
 
@@ -169,9 +169,9 @@
 					{
 						var children = newList.listNode.getChildren(),
-								pendingLis = [],
-								count = children.count(),
-								child;
-
-						for ( i = count - 1; i >= 0; i-- )
+							pendingLis = [],
+							count = children.count(),
+							child;
+
+						for ( i = count - 1 ; i >= 0 ; i-- )
 						{
 							if ( ( child = children.getItem( i ) ) && child.is && child.is( 'li' ) )
@@ -199,8 +199,5 @@
 							// IE requires a filler NBSP for nested list inside empty list item,
 							// otherwise the list item will be inaccessiable. (#4476)
-							if ( CKEDITOR.env.ie && !li.getFirst( function( node )
-							                                      {
-								                                      return isNotWhitespaces( node ) && isNotBookmark( node );
-							                                      } ) )
+							if ( CKEDITOR.env.ie && !li.getFirst( function( node ){ return isNotWhitespaces( node ) && isNotBookmark( node ); } ) )
 								li.append( range.document.createText( '\u00a0' ) );
 
@@ -337,5 +334,5 @@
 					// Only do that for indenting or when using indent classes or when there is something to outdent. (#6141)
 					if ( !( indentWholeList &&
-							( self.name == 'indent' || self.useIndentClasses || parseInt( nearestListBlock.getStyle( getIndentCssProperty( nearestListBlock ) ), 10 ) ) &&
+						( self.name == 'indent' || self.useIndentClasses || parseInt( nearestListBlock.getStyle( getIndentCssProperty( nearestListBlock ) ), 10 ) ) &&
 							indentElement( nearestListBlock, !hasMultipleItems && firstListItem.getDirection() ) ) )
 								indentList( nearestListBlock, range );
