Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1947)
+++ _whatsnew.html	(working copy)
@@ -62,6 +62,8 @@
 			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 
 			when opening the bullet list properties dialog.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2168">#2168</a>] Comments won't generate new
+			paragraphs in the output.</li>
 	</ul>
 	<h3>
 		Version 2.6</h3>
Index: editor/_source/internals/fck.js
===================================================================
--- editor/_source/internals/fck.js	(revision 1947)
+++ editor/_source/internals/fck.js	(working copy)
@@ -198,6 +198,11 @@
 					// Ignore space only or empty text.
 					if ( oNewBlock || oNode.nodeValue.Trim().length > 0 )
 						bMoveNode = true ;
+
+				// Comment Node
+				case 8 :
+					if ( oNewBlock )
+						bMoveNode = true ;
 			}
 
 			if ( bMoveNode )
