diff options
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r-- | src/mangen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp index 5b1a7d1..8fc023c 100644 --- a/src/mangen.cpp +++ b/src/mangen.cpp @@ -224,8 +224,8 @@ void ManGenerator::codify(const char *str) t << spaces.left(spacesToNextTabStop); col+=spacesToNextTabStop; break; - case '\n': t << "\n.br\n"; firstCol=TRUE; col=0; break; - case '\\': t << "\\\\"; col++; break; + case '\n': t << "\n"; firstCol=TRUE; col=0; break; + case '\\': t << "\\"; col++; break; default: t << c; firstCol=FALSE; col++; break; } } |