A followup:

I've tried this change with no real issues I can see changing, but I
would like Pierre to check off on this before it goes in, as hes the one
most familiar with  the mork parsing code.

-Kevin Kubasik
On Tue, 2006-09-12 at 15:59 +0200, Florian Hackenberger wrote:
> Hi!
> 
> I found a bug in Mork.cs:98
> if (content [position].Equals ('/') && content [position].Equals ('/'))
>     // Ignore comments
>     position = content.IndexOf ('\n', position);
> 
> should be:
> if (content [position].Equals ('/') && content [position+1].Equals ('/'))
>     // Ignore comments
>     position = content.IndexOf ('\n', position);
> 
> Could someone with write access to CVS please correct this bug and commit?
> 
> Regards,
>       Florian
> 

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
Dashboard-hackers mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/dashboard-hackers

Reply via email to