Skip to content

Commit

Permalink
Bug 784322 - .tex file is wrong when generating a function whose name…
Browse files Browse the repository at this point in the history
… includes an underline

Correctly write the text to the text file (i.e. escape some characters)
  • Loading branch information
albert-github committed Jun 27, 2018
1 parent 154e877 commit 1c55b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/latexgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2150,7 +2150,7 @@ void LatexGenerator::endParameterList()
void LatexGenerator::startParameterType(bool first,const char *key)
{
t << "\\item[{";
if (!first && key) t << key;
if (!first && key) docify(key);
}

void LatexGenerator::endParameterType()
Expand Down

0 comments on commit 1c55b57

Please sign in to comment.