- Joined
- Feb 2, 2006
- Messages
- 1,629
Hi,
I am just wondering whenever I save my map generated JASS code lines from vJass with prefixes (library names) and underscores change the number of underscores:
It changes the three underscores ___ into two underscores __.
For some libraries it happens the other way around:
Why is this happening and could I disabled it?
It is a bit annoying when using Git/diffs and seeing so many changes although nothing really changed in vJass.
I am just wondering whenever I save my map generated JASS code lines from vJass with prefixes (library names) and underscores change the number of underscores:
Code:
-hashtable Attributes___h= InitHashtable()
-integer array Attributes___attributes
-integer Attributes___attributesCounter= 0
+hashtable Attributes__h= InitHashtable()
+integer array Attributes__attributes
+integer Attributes__attributesCounter= 0
It changes the three underscores ___ into two underscores __.
For some libraries it happens the other way around:
Code:
-integer CTL__tgc= 0
-integer array CTL__tgr
+integer CTL___tgc= 0
+integer array CTL___tgr
Why is this happening and could I disabled it?
It is a bit annoying when using Git/diffs and seeing so many changes although nothing really changed in vJass.