diff options
author | albert-github <albert.tests@gmail.com> | 2020-09-18 19:04:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-18 19:04:14 (GMT) |
commit | 254d1106e52f89fc69620dded9a670358818e8e6 (patch) | |
tree | 892b5cf85698dabd398107714eb7084157dbc62b /src/cite.cpp | |
parent | 58895b1763fbc2d09a180204c831cf204adb5e1c (diff) | |
download | Doxygen-254d1106e52f89fc69620dded9a670358818e8e6.zip Doxygen-254d1106e52f89fc69620dded9a670358818e8e6.tar.gz Doxygen-254d1106e52f89fc69620dded9a670358818e8e6.tar.bz2 |
Line count mismatch for Python (#8041)
When having an example like:
```
## General \PYgen0 docu
#
#
#
#
# General detail \PYgen1 text
# and more
STYLE_TEMPLATE = r'''
\makeatletter
'''
## General \PYgen2 docu
#
#
#
#
#
# General detail \PYgen3 text
# and more
STYLE_TEMPLATE1 = r'''
\makeatletter
'''
```
with
```
EXTRACT_ALL = YES
QUIET = YES
```
we get the warnings (removed doubles and sorted):
```
bb.py:1: warning: Found unknown command '\PYgen0'
bb.py:10: warning: Found unknown command '\PYgen1'
bb.py:12: warning: Found unknown command '\PYgen2'
bb.py:23: warning: Found unknown command '\PYgen3'
```
we see here (especially with `PYgen3` a wrong line number.
After fixing the line count in `pyscanner.l` there was for the second block an offset of 1. This was caused by `commentscan.l` introduced with #7960 after correcting this this offset was also gone.
Revisiting the original example of #7960 showed that here here was also an offset of 1 (probably due to a misinterpretation of where the `<tr>` warning should be mentioned), here it is now also correct..
(The original mismatch was shown of Fossies for the Pygments package)
Diffstat (limited to 'src/cite.cpp')
0 files changed, 0 insertions, 0 deletions