Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 1983)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 1984)
@@ -85,4 +85,6 @@
 			to work including the &lt;head&gt; (FullPage), references to stylesheets added by Firefox extensions
 			won't be added to the output.</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>
Index: /FCKeditor/trunk/editor/_source/internals/fck.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fck.js	(revision 1983)
+++ /FCKeditor/trunk/editor/_source/internals/fck.js	(revision 1984)
@@ -199,4 +199,11 @@
 					if ( oNewBlock || oNode.nodeValue.Trim().length > 0 )
 						bMoveNode = true ;
+					break;
+
+				// Comment Node
+				case 8 :
+					if ( oNewBlock )
+						bMoveNode = true ;
+					break;
 			}
 
