diff options
author | albert-github <albert.tests@gmail.com> | 2020-09-20 14:47:57 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-09-20 14:47:57 (GMT) |
commit | c69542e495a01aca1cb20013d91fda78730d2153 (patch) | |
tree | 161db7833ba4ffd092242c60a3b9249c5e13f9c0 /src/htmlhelp.cpp | |
parent | 1206a9b9b49cdd904c1b5f003c874acd94472806 (diff) | |
download | Doxygen-c69542e495a01aca1cb20013d91fda78730d2153.zip Doxygen-c69542e495a01aca1cb20013d91fda78730d2153.tar.gz Doxygen-c69542e495a01aca1cb20013d91fda78730d2153.tar.bz2 |
Miscounting lines in doctokinizer
When having a file like:
```
@page md_aa aa
Last \error2
- Install \error3
```
we get the warnings:
```
aa.md:3: warning: Found unknown command '\error2'
aa.md:7: warning: Found unknown command '\error3'
```
instead of
```
aa.md:3: warning: Found unknown command '\error2'
aa.md:5: warning: Found unknown command '\error3'
```
Investigation lead to that this is due to the fact that with a `REJECT` the line counter in `doctokinizer.l` is not reset. By counting the lines ourselves we can properly count the lines.
(Other lexers don't have this problem as here we already do the counting ourselves)
Diffstat (limited to 'src/htmlhelp.cpp')
0 files changed, 0 insertions, 0 deletions