* src/tools/docmaker/sources.py (re_source_block_format2) <column>:


			
			
				david-pic-changes
			
			
		
Werner Lemberg 21 years ago
parent 619e147621
commit 2c1e57096f
  1. 6
      ChangeLog
  2. 2
      src/tools/docmaker/sources.py

@ -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…
Cancel
Save