diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:42:00 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:42:00 (GMT) |
commit | df5aeefd51095ad5b1f5fe1bf563a7302f93feeb (patch) | |
tree | e1e96dcb9bbad928271e0546023ea0a9841641b6 /src/latexgen.cpp | |
parent | dc2968f7b44b1a219a0695ba80c63cd0d7da0ef1 (diff) | |
download | Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.zip Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.tar.gz Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.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 |