ST/X didn't start without this fix.
authorStefan Vogel <sv@exept.de>
Wed, 07 Mar 2012 22:42:14 +0100
changeset 11389 41cbd2e426f7
parent 11388 b4403173b77b
child 11390 b5af6f49f10f
ST/X didn't start without this fix. changed: #syntaxHighlighter
Tools__LintService.st
--- a/Tools__LintService.st	Wed Mar 07 21:12:37 2012 +0100
+++ b/Tools__LintService.st	Wed Mar 07 22:42:14 2012 +0100
@@ -82,7 +82,7 @@
 
     app := codeView application.
     app notNil ifTrue:[
-        true "(app respondsTo: #selectedLintRules)" ifTrue:[
+        (app respondsTo: #selectedLintRules) ifTrue:[
             rules := self ruleHolderFromApp value.
             rules notEmptyOrNil ifTrue:[
                 highlighter rules: rules.
@@ -198,9 +198,9 @@
 !LintService class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.3 2012-03-07 17:19:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.4 2012-03-07 21:42:14 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.3 2012-03-07 17:19:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.4 2012-03-07 21:42:14 stefan Exp $'
 ! !