Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CFamilyLexer: Fix matching of function parameters #2210

Merged
merged 1 commit into from Aug 18, 2022

Conversation

amitkummer
Copy link
Contributor

This fixes an issue where in code like this:

int foo(float bar) // hello() {}

The lexer would match (float bar) // hello() as the parameters of the function foo, instead of just (float bar).

In addition, a similar test case to what was originally reported in #2208 is added.

This fixes an issue where in code like this:

```
int foo(float bar) // hello() {}
```

The lexer would match `(float bar) // hello()`
as the parameters of the function `foo`, instead
of just `(float bar)`.

In addition, a similar test case to what was originally
reported in pygments#2208 is added.
@jeanas jeanas merged commit adb90dc into pygments:master Aug 18, 2022
@Anteru Anteru added this to the 2.14.0 milestone Dec 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants