reformat tabs into spaces
authorEugene Petkevich <nasedil.genio.code@gmail.com>
Thu, 11 Jan 2024 17:59:31 +0000 (18:59 +0100)
committerEugene Petkevich <nasedil.genio.code@gmail.com>
Thu, 11 Jan 2024 17:59:31 +0000 (18:59 +0100)
extensions/classes/globaldict.sc
extensions/classes/patutils.sc

index b758973..eb40d4c 100644 (file)
@@ -5,15 +5,15 @@ GlobalDict {
   }
 
   *removeAll {
-               this.all.clear;
-               this.all.makeEmpty;
-       }
+    this.all.clear;
+    this.all.makeEmpty;
+  }
 
   *at { arg key;
     ^this.all.at(key)
-       }
+  }
 
   *put { arg key, value;
     ^this.all.put(key, value)
-       }
+  }
 }
\ No newline at end of file
index c00a1a4..6eec0d4 100644 (file)
@@ -6,14 +6,14 @@
       tempSource = source;
       this.source = GlobalDict.at(keyName);
       GlobalDict.put(keyName, tempSource);
-               } {
+    } {
       switch (newPattern,
         \fbs, { newPattern = Pseq([1, Pseq([Rest(1)], inf)]) },
         \s, { newPattern = Rest(1) }
       );
       GlobalDict.put(keyName, source);
       this.source = newPattern;
-               }
+    }
     ^this
   }
 }