* src/tools/docmaker/sources.py (re_source_block_format2) <column>:
Use lookahead assertion to not match `*/'. This removes spurious insertions of `/' in the HTML output.
This commit is contained in:
parent
619e147621
commit
2c1e57096f
@ -1,3 +1,9 @@
|
||||
2004-09-08 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/tools/docmaker/sources.py (re_source_block_format2) <column>:
|
||||
Use lookahead assertion to not match `*/'. This removes spurious
|
||||
insertions of `/' in the HTML output.
|
||||
|
||||
2004-09-07 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/truetype/ttgxvar.c (TT_Vary_Get_Glyph_Deltas): Fix call to
|
||||
|
@ -93,7 +93,7 @@ start = r'''
|
||||
|
||||
column = r'''
|
||||
\s* # any number of whitespace
|
||||
\*{1} # followed by precisely one asterisk
|
||||
\*{1}(?!/) # followed by precisely one asterisk not followed by `/'
|
||||
(.*) # then anything (group1)
|
||||
'''
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user