Commit 1e8a6990 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 735482 - [PATCH] Remove a not needed initialization of a local variable in src/mangen.cpp

parent 2038873c
...@@ -341,7 +341,7 @@ void ManGenerator::codify(const char *str) ...@@ -341,7 +341,7 @@ void ManGenerator::codify(const char *str)
break; break;
case '\n': t << "\n"; firstCol=TRUE; col=0; break; case '\n': t << "\n"; firstCol=TRUE; col=0; break;
case '\\': t << "\\"; col++; break; case '\\': t << "\\"; col++; break;
case '\"': c = '\''; // no break! case '\"': // no break!
default: p=writeUtf8Char(t,p-1); firstCol=FALSE; col++; break; default: p=writeUtf8Char(t,p-1); firstCol=FALSE; col++; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment