i += 1;
changed = TRUE;
}
- else if (inVerbatim && (ch == '{' || ch == '}')) // Escape the curly bracket
+ else if (inVerbatim && (ch == '{' || ch == '}')) // Escape the curley bracket
{
BigBuffer[ptr] = '\\'; ptr ++;
BigBuffer[ptr] = ch; ptr ++;
else
{
TexOutput("??");
- sprintf(buf, "Warning: unresolved reference %s.", refName);
+ sprintf(buf, "Warning: unresolved reference '%s'", refName);
OnInform(buf);
}
}
bool RTFGo(void)
{
+ if (stopRunning)
+ return FALSE;
+
// Reset variables
indentLevel = 0;
forbidParindent = 0;
SetCurrentOutput(Chapters);
+ if (stopRunning)
+ return FALSE;
+
OnInform("Converting...");
TraverseDocument();