You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
tari
changed the title
Excess spaces in macro invocations are silently ignored
Excess spaces before macro parameters cause parameters to be ignored
Aug 30, 2023
I have hit this problem about 5 times now, even after figuring it out the first time. Every time I hit it, I spend hours searching for this little typo in my code.
When a space is inserted between the name of a macro and its parameter list, the parameter list is silently ignored. Minified example:
The resultant listing drops the
.dw
completely, and no error is reported:This should instead assemble to
EF3412
, as seen if we remove the extra space:This was reported by a user in https://www.cemetech.net/forum/viewtopic.php?t=19221
The text was updated successfully, but these errors were encountered: