With spaces allowed in Mac folder names, it's necessary to use an escape sequence while programming (at least what I'm doing in C right now) and Xcode is complaining about the standard usage of the backslash character, as in:
input = fopen("/Users/joe\ schmoe/namedata.txt", "r");
if one of the folders were named "joe schmoe" with the space in there. Everything works, but the yellow warning tag and highlighting is bothersome.
How do I turn off that incorrect warning?