From 92a567010327250d50e1bb7c4d255fb8065e245e Mon Sep 17 00:00:00 2001 From: Michal Vaner Date: Sun, 15 Feb 2009 11:55:32 +0100 Subject: [PATCH] doc. system: Do not backslash name... It puts the backslash there, not escapes the ellipsis. --- build/doc-extract | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/doc-extract b/build/doc-extract index 6be99b45..576ad022 100755 --- a/build/doc-extract +++ b/build/doc-extract @@ -68,7 +68,7 @@ sub formatNote( $$ ) { $oneline =~ s/\s+$//; $oneline =~ s/;?$/;/ if( $semicolon ); $head =~ s/;?\s*$/;/ if( $semicolon ); - $head =~ s/(\.\.\.)/\\$1/g; + $head =~ s/(\s|,|\()(\.\.\.)/$1\\$2/g; # Do not convert tripple dot into ellipsis print OUT "[[${type}_$name]]\n"; $head = $oneline if $type eq 'fun';#Remove { from inline functions # Remove the generic hack markup -- 2.39.2