* src/tools/docmaker/sources.py (column) [Format 2]: Fix regexp.

After the single asterisk there must be no other immediately following
asterisk.
This commit is contained in:
Werner Lemberg 2014-11-30 20:58:27 +01:00
parent 63cb256b5b
commit 16b3e62013
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2014-11-29 Werner Lemberg <wl@gnu.org>
* src/tools/docmaker/sources.py (column) [Format 2]: Fix regexp.
After the single asterisk there must be no other immediately following
asterisk.
2014-11-29 Werner Lemberg <wl@gnu.org>
* src/tools/docmaker/tohtml.py: Improve CSS for vertical spacing.

View File

@ -98,9 +98,9 @@ start = r'''
'''
column = r'''
\s* # any number of whitespace
\*{1}(?!/) # followed by precisely one asterisk not followed by `/'
(.*) # then anything (group1)
\s* # any number of whitespace
\*{1}(?![*/]) # followed by precisely one asterisk not followed by `/'
(.*) # then anything (group1)
'''
end = r'''