summary refs log tree commit diff
path: root/bin/c11.l
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
commitb0ea267a8e390e0774eef80b01b72b93ba127c98 (patch)
treeedfb1affee4033495df5a43707ba8d3b20412d1e /bin/c11.l
parentRemove typer, add downgrade to README (diff)
downloadsrc-b0ea267a8e390e0774eef80b01b72b93ba127c98.tar.gz
src-b0ea267a8e390e0774eef80b01b72b93ba127c98.zip
Fix /* **/ comment matching
Diffstat (limited to '')
-rw-r--r--bin/c11.l2
1 files changed, 1 insertions, 1 deletions
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;
 }