Index: /CKEditor/trunk/_source/plugins/elementspath/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/elementspath/plugin.js	(revision 5366)
+++ /CKEditor/trunk/_source/plugins/elementspath/plugin.js	(revision 5367)
@@ -64,5 +64,5 @@
 						html = [],
 						editor = ev.editor,
-						elementsList = editor._.elementsPath.list = []
+						elementsList = editor._.elementsPath.list = [],
 						filters = editor._.elementsPath.filters;
 
Index: /CKEditor/trunk/_source/plugins/find/dialogs/find.js
===================================================================
--- /CKEditor/trunk/_source/plugins/find/dialogs/find.js	(revision 5366)
+++ /CKEditor/trunk/_source/plugins/find/dialogs/find.js	(revision 5367)
@@ -192,5 +192,5 @@
 							range.setStartAfter( textNode );
 					else
-						return;
+						return null;
 				}
 				else
Index: /CKEditor/trunk/_source/plugins/list/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 5366)
+++ /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 5367)
@@ -55,5 +55,5 @@
 				for ( var j = 0, itemChildCount = listItem.getChildCount(), child; j < itemChildCount ; j++ )
 				{
-					var child = listItem.getChild( j );
+					child = listItem.getChild( j );
 					if ( child.type == CKEDITOR.NODE_ELEMENT && listNodeNames[ child.getName() ] )
 						// Note the recursion here, it pushes inner list items with
Index: /CKEditor/trunk/_source/plugins/tabletools/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/tabletools/plugin.js	(revision 5366)
+++ /CKEditor/trunk/_source/plugins/tabletools/plugin.js	(revision 5367)
@@ -94,10 +94,10 @@
 			tr;
 	
-		while ( cell = cellsToDelete[ i++ ] )
+		while ( ( cell = cellsToDelete[ i++ ] ) )
 			CKEDITOR.dom.element.setMarker( database, cell, 'delete_cell', true );
 		
 		// 1.first we check left or right side focusable cell row by row;
 		i = 0;
-		while ( cell = cellsToDelete[ i++ ] )
+		while ( ( cell = cellsToDelete[ i++ ] ) )
 		{
 			if ( ( focusedCell = cell.getPrevious() ) && !focusedCell.getCustomData( 'delete_cell' )			  
@@ -113,10 +113,10 @@
 		// 2. then we check the toppest row (outside the selection area square) focusable cell
 		tr = cellsToDelete[ 0 ].getParent();
-		if ( tr = tr.getPrevious() )
+		if ( ( tr = tr.getPrevious() ) )
 			return tr.getLast();
 		
 		// 3. last we check the lowerest  row focusable cell
 		tr = cellsToDelete[ last ].getParent();
-		if ( tr = tr.getNext() )
+		if ( ( tr = tr.getNext() ) )
 			return tr.getChild( 0 );
 
