Comment 45 for bug 120281

Revision history for this message
In , Tuukka Tolvanen (sp3000) wrote :

(From update of attachment 259776)
You'll need to set 'review?' in the patch 'details' on someone to get attention; the recent parts of http://bonsai.mozilla.org/cvslog.cgi?file=/mozilla/mailnews/compose/src/nsMsgCompose.cpp will probably suggest reasonable review victims.

>+ char quote=0;

boolean; PRBool, PR_TRUE/FALSE

>+ for (int i=0; i < body.Length(); i++) {

signedness; PRUint32, check compiler warnings

>+ quote=1;

style; spaces

>+ if (body[j] == '\r')

if body[0] == '\n' you'd be looking at body[-1]