When opening a .c file in nano, /* and */ get treated as comment markers, even in string literals. For example, when opening this as a .c file: char *x = "/*"; char *y = "*/"; #include <stdio.h> int main() { printf("%s %s\n", x, y); } The syntax highlighter treats everything between the /* and the */ as a comment, even though this is incorrect.
Please report it upstream.
https://savannah.gnu.org/bugs/index.php?66205
edit clash...