Skip to content

Commit

Permalink
Bug 762982 - regression, Unescaped percent sign in doxygen output
Browse files Browse the repository at this point in the history
Besides the fact that the % sign was not escaped also the & was missing and had to be escaped as well.
  • Loading branch information
albert-github committed Mar 5, 2016
1 parent 537a1c6 commit d4ab02c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/util.cpp
Expand Up @@ -6738,6 +6738,8 @@ QCString latexEscapePDFString(const char *s)
case '{': t << "\\{"; break;
case '}': t << "\\}"; break;
case '_': t << "\\_"; break;
case '%': t << "\\%"; break;
case '&': t << "\\&"; break;
default:
t << c;
break;
Expand Down

0 comments on commit d4ab02c

Please sign in to comment.