Index: /CKEditor/trunk/_source/plugins/list/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 7626)
+++ /CKEditor/trunk/_source/plugins/list/plugin.js	(revision 7627)
@@ -938,5 +938,5 @@
 
 						// Backspace/Del behavior at the start/end of table is handled in core.
-						walker.guard = function( node, isOut ) { return !( isOut && node.type == CKEDITOR.NODE_ELEMENT && node.is( 'table' ) ) };
+						walker.guard = function( node, isOut ) { return !( isOut && node.type == CKEDITOR.NODE_ELEMENT && node.is( 'table' ) ); };
 
 						var cursor = range.clone();
@@ -1022,7 +1022,6 @@
 						else
 						{
-							var next,
-								nextLine,
-								li = range.startContainer.getAscendant( 'li', 1 );
+							var next, nextLine;
+							li = range.startContainer.getAscendant( 'li', 1 );
 
 							if ( li )
@@ -1036,5 +1035,5 @@
 								var isAtEnd = 0;
 
-								var next = walker.next();
+								next = walker.next();
 
 								// When list item contains a sub list.
Index: /CKEditor/trunk/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 7626)
+++ /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 7627)
@@ -76,5 +76,5 @@
 		{
 			if ( !node || node.type == CKEDITOR.NODE_TEXT )
-				return;
+				return false;
 
 			var testRng = range.clone();
@@ -495,5 +495,5 @@
 										// Limit the text selection mouse move inside of editable. (#9715)
 										outerDoc.on( 'mouseup', onSelectEnd );
-										html.on( 'mouseup', onSelectEnd )
+										html.on( 'mouseup', onSelectEnd );
 									}
 
@@ -1771,5 +1771,5 @@
 
 	var notWhitespaces = CKEDITOR.dom.walker.whitespaces( true ),
-			isVisible = CKEDITOR.dom.walker.invisible( 1 );
+			isVisible = CKEDITOR.dom.walker.invisible( 1 ),
 			fillerTextRegex = /\ufeff|\u00a0/,
 			nonCells = { table:1,tbody:1,tr:1 };
