Pelles C forum

Pelles C => Bug reports => Topic started by: Sanguis on March 01, 2007, 08:31:33 PM

Title: */* Comments
Post by: Sanguis on March 01, 2007, 08:31:33 PM
Hello Pelle,

Code: [Select]
int f(void) {
   /* Comment (green) */*
   This text is marked as a comment (green with me)
   This too
   */
   printf("This is code\n");
}

In your - excellent - IDE the text between */* and */ is marked as a comment, but when I compile I get 200 errors about:
This text is marked as a comment (green with me)
This too


Thanks in advance!
Title: */* Comments
Post by: Pelle on March 02, 2007, 06:17:48 PM
Yes, the syntax color highlighting looks bad in this case. For some reason, the last 'star' on the line with 'Comment (green)' is black (on my computer), but the following lines are green. I can't explain it right now. Will look at it...
Title: */* Comments
Post by: Sanguis on March 03, 2007, 02:46:32 AM
Ok, thank you very much.