diff options
author | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:42:00 (GMT) |
---|---|---|
committer | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 1999-12-15 19:42:00 (GMT) |
commit | e37828267bfc6c76a5b01208dcdb676a3aa580f9 (patch) | |
tree | e1e96dcb9bbad928271e0546023ea0a9841641b6 /src/latexgen.cpp | |
parent | 74cc4d70240d09e10c9da94c0537670fc287a85e (diff) | |
download | Doxygen-e37828267bfc6c76a5b01208dcdb676a3aa580f9.zip Doxygen-e37828267bfc6c76a5b01208dcdb676a3aa580f9.tar.gz Doxygen-e37828267bfc6c76a5b01208dcdb676a3aa580f9.tar.bz2 |
mods for doxygen-0.49-991205
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 80af53d..7cf2c26 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -965,11 +965,11 @@ void LatexGenerator::docify(const char *str) c = *p++; t << (char)c; } - else // ascii char => see if we can insert hypenation hint - { - if (isupper(c) && islower(pc) && !insideTabbing) t << "\\-"; - t << (char)c; - } + } + else // ascii char => see if we can insert hypenation hint + { + if (isupper(c) && islower(pc) && !insideTabbing) t << "\\-"; + t << (char)c; } } else // language is other than japanese |