From b0ea267a8e390e0774eef80b01b72b93ba127c98 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 16 Sep 2021 09:34:37 -0400 Subject: Fix /* **/ comment matching --- bin/c11.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/c11.l') diff --git a/bin/c11.l b/bin/c11.l index b9490f2e..06006e3f 100644 --- a/bin/c11.l +++ b/bin/c11.l @@ -79,7 +79,7 @@ register|restrict|return|static|struct|switch|typedef|union|volatile|while | {ident} { return Ident; } "//"([^\n]|"\\\n")* | -"/*"([^*]|"*"[^/])*"*"+"/" { +"/*"([^*]|"*"+[^*/])*"*"+"/" { return Comment; } -- cgit 1.4.1