Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 3977)
+++ /CKEditor/trunk/CHANGES.html	(revision 3978)
@@ -187,4 +187,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/4097">#4097</a> : No undo/redo support for fontColor and backgroundColor buttons.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/4111">#4111</a> : Fixed apply block style after inline style applied on full document error.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/3622">#3622</a> : Fixed shift enter with selection not deleting highlighted text.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/enterkey/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/enterkey/plugin.js	(revision 3977)
+++ /CKEditor/trunk/_source/plugins/enterkey/plugin.js	(revision 3978)
@@ -257,4 +257,5 @@
 				lineBreak = doc.createElement( 'br' );
 
+			range.deleteContents();
 			range.insertNode( lineBreak );
 
