diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-11-29 15:27:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-11-29 15:27:07 (GMT) |
commit | 9d1c6f6f309cf35c1b413ee3767913f30cf1b84e (patch) | |
tree | 43fcbdc86c011a786bd59a035f8aba53ffdf539e /src/util.cpp | |
parent | 200b828ead9f6bb5b2f6f99919837d5828a250e4 (diff) | |
parent | 0cb39b4cf9f1e89720cb19f58158b90ecf0b75ef (diff) | |
download | Doxygen-9d1c6f6f309cf35c1b413ee3767913f30cf1b84e.zip Doxygen-9d1c6f6f309cf35c1b413ee3767913f30cf1b84e.tar.gz Doxygen-9d1c6f6f309cf35c1b413ee3767913f30cf1b84e.tar.bz2 |
Merge pull request #249 from albert-github/feature/bug_latex_single_quotes
LaTeX problem with 2 consecutive single quotes
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp index 64e63c8..8f7765a 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -6502,6 +6502,8 @@ void filterLatexString(FTextStream &t,const char *str, break; case '"': t << "\\char`\\\"{}"; break; + case '\'': t << "\\textquotesingle{}"; + break; default: //if (!insideTabbing && forceBreaks && c!=' ' && *p!=' ') |