summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-16 09:34:37 -0400
committerJune McEnroe <june@causal.agency>2021-09-16 09:34:37 -0400
commitbe809c51a57225e17897ca9e5243c259c65895f0 (patch)
treea889f4d22175c701b32db4b7d16b68ff6e162e88 /bin
parentRemove typer, add downgrade to README (diff)
downloadsrc-be809c51a57225e17897ca9e5243c259c65895f0.tar.gz
src-be809c51a57225e17897ca9e5243c259c65895f0.zip
Fix /* **/ comment matching
Diffstat (limited to 'bin')
-rw-r--r--bin/c11.l2
1 files changed, 1 insertions, 1 deletions
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;
 }