Index: /CKEditor/trunk/_source/core/scriptloader.js
===================================================================
--- /CKEditor/trunk/_source/core/scriptloader.js	(revision 6314)
+++ /CKEditor/trunk/_source/core/scriptloader.js	(revision 6315)
@@ -34,6 +34,4 @@
 		 * @param {Object} [scope] The scope ("this" reference) to be used for
 		 *		the callback call. Default to {@link CKEDITOR}.
-		 * @param {Boolean} [noCheck] Indicates that the script must be loaded
-		 *		anyway, not checking if it has already loaded.
 		 * @param {Boolean} [showBusy] Changes the cursor of the document while
 +		 *		the script is loaded.
@@ -54,5 +52,5 @@
 		 *     });
 		 */
-		load : function( scriptUrl, callback, scope, noCheck, showBusy )
+		load : function( scriptUrl, callback, scope, showBusy )
 		{
 			var isString = ( typeof scriptUrl == 'string' );
@@ -112,5 +110,5 @@
 			var loadScript = function( url )
 			{
-				if ( noCheck !== true && uniqueScripts[ url ] )
+				if ( uniqueScripts[ url ] )
 				{
 					checkLoaded( url, true );
@@ -178,22 +176,4 @@
 				loadScript( scriptUrl[ i ] );
 			}
-		},
-
-		/**
-		 * Executes a JavaScript code into the current document.
-		 * @param {String} code The code to be executed.
-		 * @example
-		 * CKEDITOR.scriptLoader.loadCode( 'var x = 10;' );
-		 * alert( x );  // "10"
-		 */
-		loadCode : function( code )
-		{
-			// Create the <script> element.
-			var script = new CKEDITOR.dom.element( 'script' );
-			script.setAttribute( 'type', 'text/javascript' );
-			script.appendText( code );
-
-			// Append it to <head>.
-			script.appendTo( CKEDITOR.document.getHead() );
 		}
 	};
Index: /CKEditor/trunk/_source/plugins/pastefromword/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/pastefromword/plugin.js	(revision 6314)
+++ /CKEditor/trunk/_source/plugins/pastefromword/plugin.js	(revision 6315)
@@ -95,5 +95,5 @@
 
 				// Load with busy indicator.
-				CKEDITOR.scriptLoader.load( filterFilePath, callback, null, false, true );
+				CKEDITOR.scriptLoader.load( filterFilePath, callback, null, true );
 			}
 
