Somewhat related, in C, this... ```c typedef struct FOO FOO; ```
...doesn't define `struct FOO`, yet if you use the undefined `struct FOO`, it's highlighted because the typedef `FOO` overrides the undefined struct type. But if you put... ```c typedef struct FOO_ FOO; ``` ... `struct FOO_` isn't highlighted. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/970#issuecomment-199119789
