diff -ruN orig/Init.st new/Init.st --- orig/Init.st 2006-04-17 18:18:55.000000000 +0100 +++ new/Init.st 2007-12-30 06:50:45.000000000 +0000 @@ -21,7 +21,7 @@ ====================================================================== " -PackageLoader fileInPackages: #('Regex' 'MUtility')! +PackageLoader fileInPackages: #('Regex')! Class methodsFor: 'organization of methods and classes'! @@ -61,19 +61,3 @@ idx := m to + 1. ]. ! ! - -DLD class methodsFor: 'debugging'! - -addLibrary: library - "Add library to the search path of libraries to be used by DLD." - ^(LibraryList anySatisfy: [ :anAssociation | anAssociation key = library ]) - ifTrue: [ 'Already added' ] - ifFalse: [ | handle | - handle := (self linkFile: library). - LibraryList add: library -> handle. - LibraryStream := RoundRobinStream on: LibraryList readStream. - handle isNil - ifTrue: [ 'Link failed.' ] - ifFalse: [ 'OK' ].]. -! -! \ No newline at end of file