Bug - Fixed Advanced Script Handler Does Not Like Horizontal Tab Characters

philmasterplus

Active member
The following ASH code produces an error:
Code:
string my_string=<1 or more tab characters>"This is a string";

However, this does not:
Code:
string my_string=<space><1 or more tab characters>"This is a string";

I guess this is an issue with how the interpreter recognizes tokens. Could this problem be fixed, please?
 

Bale

Minion
I had noticed the same issue with tabs preceding comments in some situations. I've learned to always place a space before the tab in order to neutralize the problem. Sorry that I cannot say when the problem popped up, exactly since I forgot about it after finding an easy workaround. I think it may have been when a comment is following a { separated only by only tabs.
 
Top