Skip to content

Commit

Permalink
Bug 763104 - hyperref link label drop underscores
Browse files Browse the repository at this point in the history
underscores were not escaped in the content for "PDF summary/index in the left tab"
  • Loading branch information
albert-github committed Mar 5, 2016
1 parent 7584c29 commit 537a1c6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6737,6 +6737,7 @@ QCString latexEscapePDFString(const char *s)
case '\\': t << "\\textbackslash{}"; break;
case '{': t << "\\{"; break;
case '}': t << "\\}"; break;
case '_': t << "\\_"; break;
default:
t << c;
break;
Expand Down

0 comments on commit 537a1c6

Please sign in to comment.