Index: /CKEditor/branches/versions/3.4.x/_samples/api_dialog.html
===================================================================
--- /CKEditor/branches/versions/3.4.x/_samples/api_dialog.html	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_samples/api_dialog.html	(revision 5711)
@@ -98,5 +98,5 @@
 				var urlField = this.getContentElement( 'info', 'url' );
 				urlField.select();
-			}
+			};
 		}
 	});
Index: /CKEditor/branches/versions/3.4.x/_source/core/dom/rangelist.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/core/dom/rangelist.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/core/dom/rangelist.js	(revision 5711)
@@ -63,5 +63,5 @@
 							// the range correctness after it doesn't matter since we'll
 							// restore them before the next iteration.
-							if ( current == 0 )
+							if ( !current )
 							{
 								// Make sure bookmark correctness by reverse processing.
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/bidi/plugin.js	(revision 5711)
@@ -118,5 +118,5 @@
 						};
 
-						while ( block = walker.next() )
+						while ( ( block = walker.next() ) )
 						{
 							switchDir( block, dir, editor );
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/indent/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/indent/plugin.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/indent/plugin.js	(revision 5711)
@@ -218,5 +218,5 @@
 			{
 				if ( element.getCustomData( 'indent_processed' ) )
-					return;
+					return false;
 
 				if ( self.useIndentClasses )
@@ -276,5 +276,5 @@
 
 			var iterator = ranges.createIterator();
-			while ( range = iterator.getNextRange() )
+			while ( ( range = iterator.getNextRange() ) )
 			{
 				var startContainer = range.startContainer,
@@ -316,5 +316,5 @@
 					// Indent the entire list if  cursor is inside the first list item. (#3893)
 					if ( !( indentWholeList && indentElement( nearestListBlock ) ) )
-					indentList( nearestListBlock );
+						indentList( nearestListBlock );
 				}
 				else
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/removeformat/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/removeformat/plugin.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/removeformat/plugin.js	(revision 5711)
@@ -40,5 +40,5 @@
 					range;
 
-				while ( range = iterator.getNextRange() )
+				while ( ( range = iterator.getNextRange() ) )
 				{
 					if ( range.collapsed )
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/selection/plugin.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/selection/plugin.js	(revision 5711)
@@ -684,5 +684,5 @@
 						// by the end of it.
 						var readOnly;
-						if ( readOnly = startContainer.isReadOnly() )
+						if ( ( readOnly = startContainer.isReadOnly() ) )
 							range.setStartAfter( readOnly );
 
@@ -741,5 +741,5 @@
 
 				return cache.ranges;
-			}
+			};
 		})(),
 
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/styles/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/styles/plugin.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/styles/plugin.js	(revision 5711)
@@ -1280,5 +1280,5 @@
 
 		var iterator = ranges.createIterator();
-		while ( range = iterator.getNextRange() )
+		while ( ( range = iterator.getNextRange() ) )
 			func.call( this, range );
 
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/tab/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/tab/plugin.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/tab/plugin.js	(revision 5711)
@@ -42,5 +42,5 @@
 							cell;
 
-					if ( cell = ( ancestor.getAscendant( 'td', true ) || ancestor.getAscendant( 'th', true ) ) )
+					if ( ( cell = ( ancestor.getAscendant( 'td', true ) || ancestor.getAscendant( 'th', true ) ) ) )
 					{
 						var resultRange = new CKEDITOR.dom.range( editor.document ),
Index: /CKEditor/branches/versions/3.4.x/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.4.x/_source/plugins/wysiwygarea/plugin.js	(revision 5710)
+++ /CKEditor/branches/versions/3.4.x/_source/plugins/wysiwygarea/plugin.js	(revision 5711)
@@ -32,7 +32,6 @@
 				return;
 
-			var data = evt.data
+			var data = evt.data;
 			this.fire( 'saveSnapshot' );
-
 
 			if ( this.dataProcessor )
