changed:
authorClaus Gittinger <cg@exept.de>
Wed, 07 Dec 2011 22:16:18 +0100
changeset 13866 c15dce4faf10
parent 13865 8a42d5528cc4
child 13867 ed5b71c6e589
changed: #cmd_help: #cmd_show:
ReadEvalPrintLoop.st
--- a/ReadEvalPrintLoop.st	Wed Dec 07 22:09:36 2011 +0100
+++ b/ReadEvalPrintLoop.st	Wed Dec 07 22:16:18 2011 +0100
@@ -174,7 +174,7 @@
         processes .......... processes
         memory ............. memory usage
         flags .............. flags
-        packages ........... loaded packages
+        modules ............ loaded modules
     #set/clear <flag> ... set or clear a flag
         trace .............. tracing execution
         timing ............. timing execution
@@ -225,7 +225,7 @@
         MiniDebugger basicNew showProcesses.
         ^ self.
     ].
-    (what startsWith:'pack') ifTrue:[
+    (what startsWith:'mod') ifTrue:[
         printModule := 
             [:mod |
                 self errorStream
@@ -266,7 +266,7 @@
 
     self errorStream nextPutLine:'?? show what ?'.
 
-    "Modified (comment): / 07-12-2011 / 22:09:22 / cg"
+    "Modified: / 07-12-2011 / 22:15:07 / cg"
 !
 
 cmd_use:lineStream
@@ -426,9 +426,9 @@
 !ReadEvalPrintLoop class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.38 2011-12-07 21:09:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.39 2011-12-07 21:16:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.38 2011-12-07 21:09:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.39 2011-12-07 21:16:18 cg Exp $'
 ! !