Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1732)
+++ _whatsnew.html	(working copy)
@@ -39,6 +39,9 @@
 	<ul>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2017">#2017</a>] The FCKeditorAPI.Instances
 			object can now be used to access all FCKeditor instances available in the page.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1980">#1980</a>] <span
+			style="color: #ff0000">Attention:</span> By default, the editor now produces &lt;strong&gt;
+			and &lt;em&gt; instead of &lt;b&gt; and &lt;i&gt;.</li>
 	</ul>
 	<p>
 		Fixed Bugs:</p>
Index: fckconfig.js
===================================================================
--- fckconfig.js	(revision 1732)
+++ fckconfig.js	(working copy)
@@ -204,8 +204,8 @@
 FCKConfig.CoreStyles =
 {
 	// Basic Inline Styles.
-	'Bold'			: { Element : 'b', Overrides : 'strong' },
-	'Italic'		: { Element : 'i', Overrides : 'em' },
+	'Bold'			: { Element : 'strong', Overrides : 'b' },
+	'Italic'		: { Element : 'em', Overrides : 'i' },
 	'Underline'		: { Element : 'u' },
 	'StrikeThrough'	: { Element : 'strike' },
 	'Subscript'		: { Element : 'sub' },
Index: fckstyles.xml
===================================================================
--- fckstyles.xml	(revision 1732)
+++ fckstyles.xml	(working copy)
@@ -68,9 +68,6 @@
 		<Style name="background-color" value="Lime" />
 	</Style>
 
-	<Style name="Strong Emphasis" element="strong" />
-	<Style name="Emphasis" element="em" />
-
 	<Style name="Big" element="big" />
 	<Style name="Small" element="small" />
 	<Style name="Typewriter" element="tt" />
