Commit 2c5af96f authored by claes's avatar claes

() replaced by __ in html filnames

parent ee2b9d22
......@@ -62,7 +62,7 @@ void XhelpToHtml::subject_to_fname( char *fname, char *subject, int path)
strcat( fname, "_");
t = fname + strlen(fname);
for ( s = subject; *s; s++,t++) {
if ( *s == ' ')
if ( *s == ' ' || *s == '(' || *s == ')')
*t = '_';
else
*t = *s;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment