summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp
index d70e84e..dc02ccf 100644
--- a/src/mangen.cpp
+++ b/src/mangen.cpp
@@ -341,7 +341,7 @@ void ManGenerator::codify(const char *str)
break;
case '\n': t << "\n"; firstCol=TRUE; col=0; break;
case '\\': t << "\\"; col++; break;
- case '\"': c = '\''; // no break!
+ case '\"': // no break!
default: p=writeUtf8Char(t,p-1); firstCol=FALSE; col++; break;
}
}