From be809c51a57225e17897ca9e5243c259c65895f0 Mon Sep 17 00:00:00 2001 From: June 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 88e4d08b..aeffe254 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