From: Simon Josefsson Date: Mon, 11 May 2009 16:45:41 +0000 (+0200) Subject: Fix gnutls_priority_init documentation. X-Git-Tag: gnutls_2_7_9~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5b4ec8f39f9bd2c50ca901649f158ef0fed8f15;p=thirdparty%2Fgnutls.git Fix gnutls_priority_init documentation. --- diff --git a/doc/scripts/gdoc b/doc/scripts/gdoc index 82d9e0af1b..13a37bd3b5 100755 --- a/doc/scripts/gdoc +++ b/doc/scripts/gdoc @@ -132,7 +132,7 @@ use POSIX qw(strftime); # match expressions used to find embedded type information -$type_constant = "\\\%(\\w+)"; +$type_constant = "((?\$1", +%highlights_html = ( $type_constant, "\$2", $type_func, "\$1", $type_struct, "\$1", $type_param, "\$1" ); $blankline_html = "

"; -%highlights_texinfo = ( $type_constant, "\\\@code{\$1}", +%highlights_texinfo = ( $type_constant, "\\\@code{\$2}", $type_func, "\\\@code{\$1}", $type_struct, "\\\@code{\$1}", $type_param, "\\\@code{\$1}" ); $blankline_texinfo = ""; -%highlights_tex = ( $type_constant, "{\\\\it \$1}", +%highlights_tex = ( $type_constant, "{\\\\it \$2}", $type_func, "{\\\\bf \$1}", $type_struct, "{\\\\it \$1}", $type_param, "{\\\\bf \$1}" ); $blankline_tex = "\\\\"; # sgml, docbook format -%highlights_sgml = ( $type_constant, "\$1", +%highlights_sgml = ( $type_constant, "\$2", $type_func, "\$1", $type_struct, "\$1", $type_env, "\$1", @@ -170,14 +170,14 @@ $blankline_tex = "\\\\"; $blankline_sgml = "\n"; # these are pretty rough -%highlights_man = ( $type_constant, "\\\\fB\$1\\\\fP", +%highlights_man = ( $type_constant, "\\\\fB\$2\\\\fP", $type_func, "\\\\fB\$1\\\\fP", $type_struct, "\\\\fB\$1\\\\fP", $type_param, "\\\\fI\$1\\\\fP" ); $blankline_man = ""; # text-mode -%highlights_text = ( $type_constant, "\$1", +%highlights_text = ( $type_constant, "\$2", $type_func, "\$1", $type_struct, "\$1", $type_param, "\$1" );