Index: /CKEditor/trunk/_source/plugins/image/dialogs/image.js
===================================================================
--- /CKEditor/trunk/_source/plugins/image/dialogs/image.js	(revision 4868)
+++ /CKEditor/trunk/_source/plugins/image/dialogs/image.js	(revision 4869)
@@ -215,5 +215,6 @@
 
 			if ( this.firstLoad )
-				CKEDITOR.tools.setTimeout( function(){ switchLockRatio( this, 'check' ) }, 0, this );
+				CKEDITOR.tools.setTimeout( function(){ switchLockRatio( this, 'check' ); }, 0, this );
+
 			this.firstLoad = false;
 			this.dontResetSize = false;
Index: /CKEditor/trunk/_source/plugins/pastefromword/filter/default.js
===================================================================
--- /CKEditor/trunk/_source/plugins/pastefromword/filter/default.js	(revision 4868)
+++ /CKEditor/trunk/_source/plugins/pastefromword/filter/default.js	(revision 4869)
@@ -245,4 +245,6 @@
 				else
 					listBaseIndent = 0;
+				
+				return false;
 			},
 
@@ -946,5 +948,5 @@
 						[ ( /^margin$|^margin-(?!bottom|top)/ ), null, function( value, element, name )
 							{
-								if( element.name in { p : 1, div : 1 } )
+								if ( element.name in { p : 1, div : 1 } )
 								{
 									var indentStyleName = config.contentsLangDirection == 'ltr' ?
@@ -958,13 +960,15 @@
 									}
 									else if ( name != indentStyleName )
-										return;
+										return null;
 
 									if ( value && !emptyMarginRegex.test( value ) )
 										return [ indentStyleName, value ];
 								}
+								
+								return null;
 							} ],
 
 						// Preserve clear float style.
-						[ /^clear$/ ],
+						[ ( /^clear$/ ) ],
 
 						[ ( /^border.*|margin.*|vertical-align|float$/ ), null,
