Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 2029)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 2030)
@@ -48,5 +48,5 @@
 			value if available.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2163">#2163</a>] If the FCKConfig.DocType
-			setting points to a HTML DocType then the output won't generate self-closing tags (it will output 
+			setting points to a HTML DocType then the output won't generate self-closing tags (it will output
 			&lt;img &gt; instead of &lt;img /&gt;).</li>
 	</ul>
@@ -71,5 +71,5 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2114">#2114</a>] Added a workaround for an
 			IE6 bug which causes floating dialogs to appear blank after opening it for the first time.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2136">#2136</a>] Fixed JavaScript error in IE 
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2136">#2136</a>] Fixed JavaScript error in IE
 			when opening the bullet list properties dialog.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1633">#1633</a>] External styles should no
@@ -79,5 +79,5 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2170">#2170</a>] Fixed Ctrl-Insert hotkey
 			for copying.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2125">#2125</a>] Fixed the issue that 
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2125">#2125</a>] Fixed the issue that
 			FCK.InsertHtml() doesn't insert contents at the caret position when dialogs are opened in IE.
 			</li>
@@ -95,15 +95,15 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2168">#2168</a>] Comments won't generate new
 			paragraphs in the output.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2184">#2184</a>] Fixed several validation 
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2184">#2184</a>] Fixed several validation
 			errors in the File Browser.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1383">#1383</a>] Fixed an IE issue where 
- 			pressing backspace may merge a hyperlink on the previous line with the text on the current line.</li> 
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1383">#1383</a>] Fixed an IE issue where
+ 			pressing backspace may merge a hyperlink on the previous line with the text on the current line.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1691">#1691</a>] Creation of links in Safari
 			failed if there was no selection.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2188">#2188</a>] PreserveSessionOnFileBrowser 
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2188">#2188</a>] PreserveSessionOnFileBrowser
 			is now removed as it was made obsolete with 2.6.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/898">#898</a>] The styles for the editing area
 			are applied in the image preview dialog.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2056">#2056</a>] Fixed several validation 
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2056">#2056</a>] Fixed several validation
 			errors in the dialogs.</li>
 	</ul>
Index: /FCKeditor/trunk/editor/_source/internals/fckdialog.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckdialog.js	(revision 2029)
+++ /FCKeditor/trunk/editor/_source/internals/fckdialog.js	(revision 2030)
@@ -213,7 +213,7 @@
 			// Prevent the user from refocusing the disabled
 			// editing window by pressing Tab. (Bug #2065)
-			var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ; 
+			var el = FCK.ToolbarSet.CurrentInstance.GetInstanceObject( 'frameElement' ) ;
 			el._fck_originalTabIndex = el.tabIndex ;
-			el.tabIndex = -1 ; 
+			el.tabIndex = -1 ;
 		},
 
Index: /FCKeditor/trunk/editor/_source/internals/fckdocumentprocessor.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckdocumentprocessor.js	(revision 2029)
+++ /FCKeditor/trunk/editor/_source/internals/fckdocumentprocessor.js	(revision 2030)
@@ -256,7 +256,7 @@
 		var spans = doc.getElementsByClassName ?
 			doc.getElementsByClassName( 'Apple-style-span' ) :
-			Array.prototype.filter.call( 
-					doc.getElementsByTagName( 'span' ), 
-					function( item ){ return item.className == 'Apple-style-span' ; } 
+			Array.prototype.filter.call(
+					doc.getElementsByTagName( 'span' ),
+					function( item ){ return item.className == 'Apple-style-span' ; }
 					) ;
 		for ( var i = spans.length - 1 ; i >= 0 ; i-- )
Index: /FCKeditor/trunk/editor/_source/internals/fckxhtml.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 2029)
+++ /FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 2030)
@@ -406,5 +406,5 @@
 			FCKXHtml._AppendAttribute( node, 'src', sSavedUrl ) ;
 
-		// Bug #768 : If the width and height are defined inline CSS, 
+		// Bug #768 : If the width and height are defined inline CSS,
 		// don't define it again in the HTML attributes.
 		if ( htmlNode.style.width )
Index: /FCKeditor/trunk/editor/_source/internals/fckxhtml_gecko.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckxhtml_gecko.js	(revision 2029)
+++ /FCKeditor/trunk/editor/_source/internals/fckxhtml_gecko.js	(revision 2030)
Index: /FCKeditor/trunk/editor/dialog/fck_replace.html
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_replace.html	(revision 2029)
+++ /FCKeditor/trunk/editor/dialog/fck_replace.html	(revision 2030)
@@ -239,5 +239,5 @@
 
 	GetNextRange : function( len )
-	{		
+	{
 		if ( this._cursors.length == 0 )
 			return null ;
Index: /FCKeditor/trunk/editor/filemanager/browser/default/browser.css
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/browser.css	(revision 2029)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/browser.css	(revision 2030)
@@ -25,5 +25,5 @@
 {
 	background-color: #f1f1e3;
-	margin-top:0; 
+	margin-top:0;
 	margin-bottom:0;
 }
