Removed check for '\par' at beginning of line that I mistakenly added before

Standardized the way I spelled 'curley' everywhere


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10319 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2001-05-24 23:37:39 +00:00
parent c786f76365
commit 341479ffb9
2 changed files with 16 additions and 16 deletions

View File

@@ -667,7 +667,7 @@ void ProcessText2RTF(TexChunk *chunk)
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 ++;