svn rev #25019: trunk/doc/rst_tools/
tsitkova@MIT.EDU
tsitkova at MIT.EDU
Tue Jul 12 11:56:46 EDT 2011
http://src.mit.edu/fisheye/changelog/krb5/?cs=25019
Commit By: tsitkova
Log Message:
Fix the problem with a wildcard in typedefs.
Changed Files:
U trunk/doc/rst_tools/doxybuilder_types.py
Modified: trunk/doc/rst_tools/doxybuilder_types.py
===================================================================
--- trunk/doc/rst_tools/doxybuilder_types.py 2011-07-11 17:53:25 UTC (rev 25018)
+++ trunk/doc/rst_tools/doxybuilder_types.py 2011-07-12 15:56:46 UTC (rev 25019)
@@ -102,6 +102,7 @@
# remove macros
t_definition = re.sub('KRB5_CALLCONV_C', '', t_definition)
t_definition = re.sub('KRB5_CALLCONV', '', t_definition)
+ t_definition = re.sub('\*', '\\*', t_definition)
# handle fp
if t_type[1].find('(') >= 0:
t_type = (t_type[0],None)
@@ -150,6 +151,7 @@
# remove macros
v_definition = re.sub('KRB5_CALLCONV_C', '', v_definition)
v_definition = re.sub('KRB5_CALLCONV', '', v_definition)
+ v_definition = re.sub('\*', '\\*', v_definition)
variable_descr = {'category': 'variable',
'definition': v_definition,
More information about the cvs-krb5
mailing list