FileBrowser.st
changeset 19224 2bc390828a2c
parent 19223 aedeefb34f99
child 19229 eab6c703e418
--- a/FileBrowser.st	Sun Oct 27 10:31:58 2019 +0100
+++ b/FileBrowser.st	Sun Oct 27 10:32:16 2019 +0100
@@ -6678,7 +6678,7 @@
     "any special fileTypeSpecific actions are done here,
      when a new file is selected"
 
-    |commentStrings parenthesesSpec|
+    |commentStrings parenthesisSpec|
 
     commentStrings := MIMETypes 
                         commentStringsForFilename:currentFileName
@@ -6690,7 +6690,7 @@
         subView perform:#commentStrings: with:commentStrings ifNotUnderstood:nil
     ].
 
-    parenthesesSpec := MIMETypes 
+    parenthesisSpec := MIMETypes 
                         parenthesisSpecForFilename:currentFileName 
                         ifUnknown:[
                             |spec|
@@ -6700,8 +6700,8 @@
                             spec
                         ]. 
 
-    parenthesesSpec notNil ifTrue:[
-        subView perform:#parenthesisSpecification: with:parenthesesSpec ifNotUnderstood:nil
+    parenthesisSpec notNil ifTrue:[
+        subView perform:#parenthesisSpecification: with:parenthesisSpec ifNotUnderstood:nil
     ].
 
     "Modified: / 10-04-2007 / 15:26:40 / cg"