Index: /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js	(revision 1135)
+++ /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js	(revision 1136)
@@ -310,9 +310,10 @@
 
 	// Only apply the fix when in a block, and the block is empty.
-	if ( parentNode.childNodes.length > 0 ||
-		 !( FCKListsLib.BlockElements[parentTag] || 
-		    FCKListsLib.NonEmptyBlockElements[parentTag] ) )
-	{
-		return ;
+	if ( parentTag != 'body' )
+	{
+		if ( parentNode.childNodes.length > 0 ||
+				!( FCKListsLib.BlockElements[parentTag] || 
+					FCKListsLib.NonEmptyBlockElements[parentTag] ) )
+			return ;
 	}
 
