Browse Source

Removed silly echo and fixed commentStamp:prior: to do the right thing.

Göran Krampe 12 years ago
parent
commit
90b287c587
2 changed files with 2 additions and 2 deletions
  1. 0 1
      bin/jtalkc
  2. 2 1
      st/Kernel.st

+ 0 - 1
bin/jtalkc

@@ -306,7 +306,6 @@ cat $TOOURCOMPILER > $TMPDIR/compiler.js
 # Compile all collected .st files to .js
 echo "Loading libraries$TOOURCOMPILER and compiling ..."
 node $TMPDIR/compiler.js $DEPLOY $SUFFIX $COMPILE
-echo node $TMPDIR/compiler.js $DEPLOY $SUFFIX $COMPILE
 
 # Verify all .js files corresponding to .st files were created, otherwise exit
 IFS=" "

+ 2 - 1
st/Kernel.st

@@ -387,7 +387,8 @@ methodsFor: aString stamp: aStamp
 !
 
 commentStamp: aStamp prior: prior
-         "Ignored right now."
+         "Stamp and prior ignored right now."
+	^self commentStamp
 ! !
 
 !Behavior methodsFor: 'instance creation'!