summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-04-17 18:47:53 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-04-17 18:47:53 (GMT)
commit37905e0a0fcc820a556d56e609335afd21f8a929 (patch)
tree25b1690e57effb00b6b482041be7b48ca0ae643e /src/mangen.cpp
parent3120c6832bd3b2df0ecac2ccb08ddcdacd5575ed (diff)
downloadDoxygen-37905e0a0fcc820a556d56e609335afd21f8a929.zip
Doxygen-37905e0a0fcc820a556d56e609335afd21f8a929.tar.gz
Doxygen-37905e0a0fcc820a556d56e609335afd21f8a929.tar.bz2
Release-1.1.2-20000417
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp4
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;
}
}