Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1983)
+++ _whatsnew.html	(working copy)
@@ -84,6 +84,8 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2162">#2162</a>] If the configuration is set
 			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>
 		Version 2.6</h3>
Index: editor/_source/internals/fck.js
===================================================================
--- editor/_source/internals/fck.js	(revision 1982)
+++ editor/_source/internals/fck.js	(working copy)
@@ -198,6 +198,13 @@
 					// Ignore space only or empty text.
 					if ( oNewBlock || oNode.nodeValue.Trim().length > 0 )
 						bMoveNode = true ;
+					break;
+
+				// Comment Node
+				case 8 :
+					if ( oNewBlock )
+						bMoveNode = true ;
+					break;
 			}
 
 			if ( bMoveNode )
