CompilationErrorHandler.st
changeset 2443 b5c69e2f0411
parent 2433 5ccfab20dcf5
child 2445 df14391bb616
--- a/CompilationErrorHandler.st	Tue Nov 02 12:54:12 2010 +0100
+++ b/CompilationErrorHandler.st	Tue Nov 02 12:59:27 2010 +0100
@@ -65,16 +65,21 @@
     "error notification during fileIn.
      This is sent by the compiler/evaluator if it detects errors."
 
-    ^ self error:aMessage position:position to:endPos from:aCompiler
+    self error:aMessage position:position to:endPos from:aCompiler.
+    ^ false. "/ no correction
 
-    "Created: / 30.7.1999 / 18:11:15 / cg"
+    "Created: / 30-07-1999 / 18:11:15 / cg"
+    "Modified: / 02-11-2010 / 12:58:54 / cg"
 !
 
 correctableSelectorWarning:aMessage position:position to:endPos from:aCompiler
     "warning notification during fileIn.
      This is sent by the compiler/evaluator if it detects errors."
 
-    ^ self warning:aMessage position:position to:endPos from:aCompiler
+    self warning:aMessage position:position to:endPos from:aCompiler.
+    ^ false. "/ no correction
+
+    "Modified: / 02-11-2010 / 12:59:04 / cg"
 !
 
 error:aMessage position:position to:endPos from:aCompiler
@@ -124,9 +129,9 @@
 !CompilationErrorHandler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.9 2010-11-02 11:52:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.10 2010-11-02 11:59:27 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.9 2010-11-02 11:52:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.10 2010-11-02 11:59:27 cg Exp $'
 ! !