NO

Author Topic: */* Comments  (Read 2918 times)

Sanguis

  • Guest
*/* Comments
« 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!

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
*/* Comments
« Reply #1 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...
/Pelle

Sanguis

  • Guest
*/* Comments
« Reply #2 on: March 03, 2007, 02:46:32 AM »
Ok, thank you very much.