News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

*/* Comments

Started by Sanguis, March 01, 2007, 08:31:33 PM

Previous topic - Next topic

Sanguis

Hello Pelle,

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!

Pelle

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...
/Pelle

Sanguis

Ok, thank you very much.