Index: /CKEditor/trunk/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 6913)
+++ /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 6914)
@@ -1153,7 +1153,8 @@
 				return cache.selectedText;
 
-			var text = '', native = this.getNative();
+			var text = '',
+				nativeSel = this.getNative();
 			if ( this.getType() == CKEDITOR.SELECTION_TEXT )
-				text = CKEDITOR.env.ie ? native.createRange().text : native.toString();
+				text = CKEDITOR.env.ie ? nativeSel.createRange().text : nativeSel.toString();
 
 			return ( cache.selectedText = text );
