* 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:
Werner Lemberg 2004-09-08 13:36:39 +00:00
parent fd22a0f9b1
commit 9511d5fd57
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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)
'''