Index: /CKEditor/branches/versions/3.2.x/_source/core/resourcemanager.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/core/resourcemanager.js	(revision 5147)
+++ /CKEditor/branches/versions/3.2.x/_source/core/resourcemanager.js	(revision 5148)
@@ -128,5 +128,5 @@
 		return CKEDITOR.getUrl(
 				this.getPath( name ) +
-				( ( external && external.file != null ) ? external.file : this.fileName + '.js' ) );
+				( ( external && external.file ) ? external.file : this.fileName + '.js' ) );
 	},
 
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/a11yhelp/dialogs/a11yhelp.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/a11yhelp/dialogs/a11yhelp.js	(revision 5147)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/a11yhelp/dialogs/a11yhelp.js	(revision 5148)
@@ -81,5 +81,5 @@
 
 	// Sort in desc.
-	var modifiers = [ CKEDITOR.ALT, CKEDITOR.SHIFT, CKEDITOR.CTRL ]
+	var modifiers = [ CKEDITOR.ALT, CKEDITOR.SHIFT, CKEDITOR.CTRL ];
 
 	function representKeyStroke( keystroke )
Index: /CKEditor/branches/versions/3.2.x/_source/plugins/div/dialogs/div.js
===================================================================
--- /CKEditor/branches/versions/3.2.x/_source/plugins/div/dialogs/div.js	(revision 5147)
+++ /CKEditor/branches/versions/3.2.x/_source/plugins/div/dialogs/div.js	(revision 5148)
@@ -330,6 +330,6 @@
 								{
 									var styleName;
-									if ( styleName = this.getValue() )
-										styles[ styleName ].applyToObject( element )
+									if ( ( styleName = this.getValue() ) )
+										styles[ styleName ].applyToObject( element );
 								}
 							},
