Earlier today I ran across a few variables that had their case (lower to upper) changed throughout the code. This happened to me the other day as well so I decided to do a little digging. This is what I came up with. Take the little snippet of code below:
CARmgp = 20
car = 123
Now let's say I had a typo, I meant to type in CARmpg instead of CARmgp. I place my cursor after the p, backspace a few times, and car = 123 suddenly turns into CAR = 123. I don't remember this happening in earlier versions of the IDE. Is this a potential bug? My thinking would be syntax checking would not be done until I leave the current line being edited.
While working on the helicopter blade code I uploaded earlier it happened as well because I was using simple one letter variables for the loops (i, j, k) but while messing around with other variables these were getting upper and lower-cased occasionally on their own.