Index: /CKEditor/branches/versions/3.4.x/_source/core/env.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/core/env.js	(revision 5754)
+++ /CKEditor/branches/versions/3.4.x/_source/core/env.js	(revision 5755)
@@ -82,6 +82,5 @@
 					hostname = window.location.hostname;
 
-				return
-					domain != hostname &&
+				return domain != hostname &&
 					domain != ( '[' + hostname + ']' );	// IPv6 IP support (#5434)
 			}
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js	(revision 5754)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js	(revision 5755)
@@ -60,5 +60,5 @@
 			
 			var node;
-			while ( node = walker.next() )
+			while ( ( node = walker.next() ) )
 			{
 				if ( node.type == CKEDITOR.NODE_ELEMENT )
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/table/dialogs/table.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/table/dialogs/table.js	(revision 5754)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/table/dialogs/table.js	(revision 5755)
@@ -51,6 +51,5 @@
 							var width = this.getStyle( 'width', '' ),
 								txtWidth = dialog.getContentElement( 'info', 'txtWidth' ),
-								cmbWidthType = dialog.getContentElement( 'info', 'cmbWidthType' );
-
+								cmbWidthType = dialog.getContentElement( 'info', 'cmbWidthType' ),
 								isPx = 1;
 
