More Programming Strangeness

More strangeness from the programming environment. I have just got a new version of the programming software for the device. I tried to upload code and it gave me a comment that there was a missing “(” on line 1. Line 1 was “int i;”

Hmm. Strange. I have seen similar problems in the past, but they are mostly problems with pointers. In this case there was none of that. I started deleting functions. That did not help. So I loaded a test program that was working yesterday. It did not work, but had an error on line 99. Looking at that line I worked out that there was a tab between the variable declaration and the variable name. Instead of “int[SPACE]i;” I had “int[TAB]i;”.