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

-- 
Florian Hackenberger
student @
University of Technology
Graz, Austria
[EMAIL PROTECTED]
www.hackenberger.at
_______________________________________________
Dashboard-hackers mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/dashboard-hackers

Reply via email to