diff options
| author | June McEnroe <june@causal.agency> | 2021-09-16 09:34:37 -0400 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2021-09-16 09:34:37 -0400 |
| commit | b0ea267a8e390e0774eef80b01b72b93ba127c98 (patch) | |
| tree | edfb1affee4033495df5a43707ba8d3b20412d1e /bin | |
| parent | Remove typer, add downgrade to README (diff) | |
| download | src-b0ea267a8e390e0774eef80b01b72b93ba127c98.tar.gz src-b0ea267a8e390e0774eef80b01b72b93ba127c98.zip | |
Fix /* **/ comment matching
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/c11.l | 2 |
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; } |