Index: /CKEditor/branches/versions/3.4.x/_source/core/dom/range.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/core/dom/range.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/core/dom/range.js	(revision 5712)
@@ -1247,5 +1247,5 @@
 		 * 	 <dd>Shrink the range boudaries to anchor by the side of enclosed text  node, range remains if there's no text nodes on boundaries at all.</dd>
 		  * </dl>
-		 * @param {Boolean} selectContents Whether result range anchors at the inner OR outer boundary of the node.   
+		 * @param {Boolean} selectContents Whether result range anchors at the inner OR outer boundary of the node.
 		 */
 		shrink : function( mode, selectContents )
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/autogrow/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/autogrow/plugin.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/autogrow/plugin.js	(revision 5712)
@@ -50,23 +50,23 @@
 	});
 })();
-/** 
+/**
  * The minimum height to which the editor can reach using AutoGrow.
  * @name CKEDITOR.config.autoGrow_minHeight
- * @type Number 
- * @default 200 
+ * @type Number
+ * @default 200
  * @since 3.4
- * @example 
+ * @example
  * config.autoGrow_minHeight = 300;
- */ 
+ */
 
-/** 
+/**
  * The maximum height to which the editor can reach using AutoGrow. Zero means unlimited.
  * @name CKEDITOR.config.autoGrow_maxHeight
- * @type Number 
+ * @type Number
  * @default 0
  * @since 3.4
- * @example 
+ * @example
  * config.autoGrow_maxHeight = 400;
- */ 
+ */
 
 /**
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js	(revision 5712)
@@ -14,5 +14,5 @@
 		evt.editor.getCommand( 'bidiltr' ).setState( getState( evt.editor, evt.data.path, 'ltr' ) );
 	}
-	
+
 	function getState( editor, path, dir )
 	{
@@ -27,5 +27,5 @@
 			)
 			selectedElement = getFullySelected( selection, guardElements );
-		
+
 		selectedElement = selectedElement || path.block || path.blockLimit;
 
@@ -90,5 +90,5 @@
 					)
 					selectedElement = getFullySelected( selection, guardElements );
-				
+
 				if ( selectedElement )
 				{
@@ -135,5 +135,5 @@
 							{
 								var parent = block.getParent();
-								
+
 								while( parent && parent.getName() != 'body' )
 								{
@@ -157,5 +157,5 @@
 						}
 					}
-					
+
 					editor.forceNextSelectionCheck();
 					// Restore selection position.
@@ -195,4 +195,4 @@
 		}
 	});
-	
+
 })();
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/list/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/list/plugin.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/list/plugin.js	(revision 5712)
@@ -301,5 +301,5 @@
 				if ( contentBlock.hasAttribute( 'dir' ) )
 				{
-					dir = dir || contentBlock.getAttribute( 'dir' ); 
+					dir = dir || contentBlock.getAttribute( 'dir' );
 					contentBlock.removeAttribute( 'dir' );
 				}
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/selection/plugin.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/selection/plugin.js	(revision 5712)
@@ -721,5 +721,5 @@
 								if ( range.collapsed )
 									ranges.splice( i--, 1 );
-								
+
 								// Avoid creating invalid range.
 								if ( !( node.getPosition( walkerRange.endContainer ) & CKEDITOR.POSITION_CONTAINS ) )
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/tableresize/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/tableresize/plugin.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/tableresize/plugin.js	(revision 5712)
@@ -51,5 +51,5 @@
 			}
 		}
-		
+
 		tr = elected;
 		var columnIndex = -1, pillars = [];
@@ -101,11 +101,11 @@
 		evt.data.preventDefault();
 	}
-	
+
 	function columnResizer( editor )
 	{
 		var pillar, document, resizer, startOffset, currentShift;
-		
+
 		var leftSideCells, rightSideCells, leftShiftBoundary, rightShiftBoundary;
-		
+
 		function detach()
 		{
@@ -118,9 +118,9 @@
 			resizer.hide();
 		}
-		
+
 		function resizeStart()
 		{
 			// Before starting to resize, figure out which cells to change
-			// and the boundaries of this resizing shift. 
+			// and the boundaries of this resizing shift.
 			var columnIndex = pillar.index,
 					map = CKEDITOR.tools.buildTableMap( pillar.table ),
@@ -149,5 +149,5 @@
 			leftShiftBoundary =  pillar.x - leftMinSize;
 			rightShiftBoundary = pillar.x + rightMinSize;
-			
+
 			resizer.setOpacity( 0.5 );
 			startOffset = parseInt( resizer.getStyle( 'left' ), 10 );
@@ -157,10 +157,10 @@
 			document.on( 'dragstart', cancel, this );
 		}
-		
+
 		function resizeEnd()
 		{
 			resizer.setOpacity( 0 );
 			currentShift && resizeColumn();
-			
+
 			var table = pillar.table;
 			setTimeout( function () { table.removeCustomData( '_cke_table_pillars' ); }, 0 );
@@ -168,5 +168,5 @@
 			detach();
 		}
-		
+
 		function resizeColumn()
 		{
@@ -191,5 +191,5 @@
 			}
 		}
-		
+
 		function onMouseMove( evt )
 		{
@@ -206,5 +206,5 @@
 			cancel( evt );
 		}
-		
+
 		function onMouseDown( evt )
 		{
@@ -213,10 +213,10 @@
 			document.on( 'mouseup', onMouseUp, this );
 		}
-		
+
 		function onMouseUp()
 		{
 			resizeEnd();
 		}
-		
+
 		function onMouseOut()
 		{
@@ -224,5 +224,5 @@
 			!currentShift && detach();
 		}
-		
+
 		document = editor.document;
 		resizer = CKEDITOR.dom.element.createFromHtml( '<div style="position: absolute; cursor: col-resize; ' +
@@ -252,5 +252,5 @@
 			// only change the cursor to resizable shape.
 			resizer.show();
-		}; 
+		};
 	}
 
@@ -271,5 +271,5 @@
 				return;
 		}
-		
+
 		target.getAscendant( 'table', true ).removeCustomData( '_cke_table_pillars' );
 		evt && evt.removeListener();
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/tabletools/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/tabletools/plugin.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/tabletools/plugin.js	(revision 5712)
@@ -1119,3 +1119,2 @@
 	return aMap ;
 };
-
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/wysiwygarea/plugin.js	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/wysiwygarea/plugin.js	(revision 5712)
@@ -472,5 +472,5 @@
 
 									// Prevent right click from selecting an empty block even
-									// when selection is anchored inside it. (#5845) 
+									// when selection is anchored inside it. (#5845)
 									if ( !target.getOuterHtml().replace( emptyParagraphRegexp, '' ) )
 									{
Index: /CKEditor/branches/versions/3.4.x/_source/skins/office2003/icons.css
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/skins/office2003/icons.css	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/skins/office2003/icons.css	(revision 5712)
Index: /CKEditor/branches/versions/3.4.x/_source/skins/v2/icons.css
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/skins/v2/icons.css	(revision 5711)
+++ /CKEditor/branches/versions/3.4.x/_source/skins/v2/icons.css	(revision 5712)
