Index: /CKEditor/branches/features/paste/_source/plugins/pastefromword/plugin.js
===================================================================
--- /CKEditor/branches/features/paste/_source/plugins/pastefromword/plugin.js	(revision 4704)
+++ /CKEditor/branches/features/paste/_source/plugins/pastefromword/plugin.js	(revision 4705)
@@ -56,7 +56,5 @@
 				// MS-WORD format sniffing.
 				if ( ( mswordHtml = data[ 'html' ] )
-					 && ( forceFromWord || /(class=\"?Mso|style=\"[^\"]*\bmso\-|w:WordDocument)/.test( mswordHtml ) )
-					 && ( !editor.config.pasteFromWordPromptCleanup
-						  || ( forceFromWord || confirm( editor.lang.pastefromword.confirmCleanup )  ) ) )
+					 && ( forceFromWord || /(class=\"?Mso|style=\"[^\"]*\bmso\-|w:WordDocument)/.test( mswordHtml ) ) )
 				{
 					var isLazyLoad = this.loadFilterRules( function()
@@ -65,5 +63,6 @@
 						if ( isLazyLoad )
 							editor.fire( 'paste', data );
-						else
+						else if( !editor.config.pasteFromWordPromptCleanup
+						  || ( forceFromWord || confirm( editor.lang.pastefromword.confirmCleanup ) ) )
 							data[ 'html' ] = CKEDITOR.cleanWord( mswordHtml, editor );
 					} );
