From bf67b53ef4c96123e8060c33ed2eac67634d891e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20St=C3=B6ggl?= Date: Sat, 28 Nov 2020 06:07:49 +0100 Subject: [PATCH] Support tabs for indentation in cue sheets So far, cue sheets using tabs for indentation could not be parsed and an error message was shown. - Fixes #65 --- CUETools.Processor/CUELine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CUETools.Processor/CUELine.cs b/CUETools.Processor/CUELine.cs index de2801b..a8ceb9c 100644 --- a/CUETools.Processor/CUELine.cs +++ b/CUETools.Processor/CUELine.cs @@ -28,7 +28,7 @@ namespace CUETools.Processor while (true) { - while ((start < lineLen) && (line[start] == ' ')) + while ((start < lineLen) && ((line[start] == ' ') || (line[start] == '\t'))) { start++; }