Could you please make a diff? cvs diff -u ./Util/Mork.cs > ./patch.diff
can you confirm the effect this has on indexing?

-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