diff -r e42cbc3a3e7b -r a605605e6324 ReadEvalPrintLoop.st --- a/ReadEvalPrintLoop.st Mon May 07 12:46:17 2018 +0200 +++ b/ReadEvalPrintLoop.st Mon May 07 12:58:07 2018 +0200 @@ -694,6 +694,7 @@ Valid commands are: #exit ............... exit interpreter loop #help ............... this text + #ide ................ open the IDE #apropos word ....... list classes/selectors matching word #list ........ show source class .............. class definition and comment @@ -746,7 +747,7 @@ cmd_ide:lineStream "upen up the ide" - Smalltalk mainStartup:true. + NewLauncher open. ! cmd_language:lineStream @@ -1194,7 +1195,7 @@ Smalltalk allClassesDo:[:cls | cls theNonMetaclass instAndClassSelectorsAndMethodsDo:[:sel :mthd | mthd isWrapped ifTrue:[ - stderr showCR:' %1' with:(mthd whoString) + stderr showCR:(mthd whoString) ]. ]. ].