From 70c907bae6cd9a4a06bf24c2d32911b9d4d66a0f Mon Sep 17 00:00:00 2001 From: Piotr Fusik Date: Sun, 7 May 2023 21:03:40 +0200 Subject: [PATCH] Revert "Warn about a comment starting with a comma." Breaks Jaskier's MPT player. https://sourceforge.net/p/asap/bugs/32/ This reverts commit 7a666799ac0f90a323ad556445ec150ceccfd47c. --- source/app.d | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/app.d b/source/app.d index 3f72773..40a70cc 100644 --- a/source/app.d +++ b/source/app.d @@ -367,11 +367,6 @@ void checkNoExtraCharacters() { switch (line[column]) { case '\t': case ' ': - if (pass2) { - readSpaces(); - if (!eol() && line[column] == ',') - warning("Comment starts with a comma. Unintended whitespace?"); - } return; default: throw new AssemblyError("Extra characters on line");