Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 3921)
+++ /CKEditor/trunk/CHANGES.html	(revision 3922)
@@ -47,5 +47,4 @@
 		Fixed issues:</p>
 	<ul>
-		<li><a href="http://dev.fckeditor.net/ticket/2856">#2856</a> : Fixed problem with inches in Paste From Word plugin.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/3929">#3929</a> : Using Paste dialog, 
 			the text is pasted into current selection</li>
@@ -147,6 +146,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/3921">#3921</a> : Fixed Container scroll issue on IE7.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/3940">#3940</a> : Fixed list operation doesn't stop at table.</li>
-		<li><a href="http://dev.fckeditor.net/ticket/3976">#3976</a> : Removed the 
-			deprecated domwalker.js file.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/3891">#3891</a> : [IE] Fixed 'automatic' font color doesn't work.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/styles/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/styles/plugin.js	(revision 3921)
+++ /CKEditor/trunk/_source/plugins/styles/plugin.js	(revision 3922)
@@ -1182,5 +1182,7 @@
 		var temp = new CKEDITOR.dom.element( 'span' );
 		temp.setAttribute( 'style', unparsedCssText );
-		return temp.getAttribute( 'style' );
+		var styleText = temp.getAttribute( 'style' );
+		// IE will leave a single semicolon when failed to parse the style text.(#3891)
+		return styleText == ';' ? '' : styleText;
 	}
 
