diff options
author | albert-github <albert.tests@gmail.com> | 2014-10-15 14:01:50 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-10-15 14:01:50 (GMT) |
commit | 9ac31f84bd25d320f861e9e194fe5df49f4b212b (patch) | |
tree | 23671921b5d1d3777672a52e372af1e5fbc3e785 | |
parent | 258259fff03a8cb0347b0ddc9f04676ab6833572 (diff) | |
download | Doxygen-9ac31f84bd25d320f861e9e194fe5df49f4b212b.zip Doxygen-9ac31f84bd25d320f861e9e194fe5df49f4b212b.tar.gz Doxygen-9ac31f84bd25d320f861e9e194fe5df49f4b212b.tar.bz2 |
Bug 738574 - … is replaced by \cdots rather than \dots in the LaTeX output
Changed the \cdots to \dots. Based on the bug report and on http://tex.stackexchange.com/questions/77737/dots-versus-ldots-is-there-a-difference
-rw-r--r-- | src/htmlentity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlentity.cpp b/src/htmlentity.cpp index 216b65c..a4d5914 100644 --- a/src/htmlentity.cpp +++ b/src/htmlentity.cpp @@ -193,7 +193,7 @@ static struct htmlEntityInfo { SYM(upsih), "\xcf\x92", "ϒ", "<upsih/>", "ϒ", "{$\\Upsilon$}", NULL, "\\u978?", { NULL, DocSymbol::Perl_unknown }}, { SYM(piv), "\xcf\x96", "ϖ", "<piv/>", "ϖ", "{$\\varpi$}", NULL, "\\u982?", { NULL, DocSymbol::Perl_unknown }}, { SYM(bull), "\xe2\x80\xa2", "•", "<bull/>", "•", "\\textbullet{}", NULL, "\\'95", { NULL, DocSymbol::Perl_unknown }}, - { SYM(hellip), "\xe2\x80\xa6", "…", "<hellip/>", "…", "{$\\cdots$}", NULL, "\\'85", { NULL, DocSymbol::Perl_unknown }}, + { SYM(hellip), "\xe2\x80\xa6", "…", "<hellip/>", "…", "{$\\dots$}", NULL, "\\'85", { NULL, DocSymbol::Perl_unknown }}, { SYM(prime), "\xe2\x80\xb2", "′", "<prime/>", "′", "'", NULL, "\\u8242?", { "\\\'", DocSymbol::Perl_string }}, { SYM(Prime), "\xe2\x80\xb3", "″", "<Prime/>", "″", "''", NULL, "\\u8243?", { "\"", DocSymbol::Perl_char }}, { SYM(oline), "\xe2\x80\xbe", "‾", "<oline/>", "‾", "{$\\overline{\\,}$}", NULL, "\\u8254?", { NULL, DocSymbol::Perl_unknown }}, |