You can now turn tokens on and off at one go. For example, if you wanted to turn on FOO and BAR and turn off BAZ, you would have had to write:
ACTIVATE_TOKENS FOO BAR
(
DEACTIVATE_TOKENS BAZ
(
....
)
)
Now, you can alternatively just write:
ACTIVATE_TOKENS FOO BAR -BAZ
(
...
)
Just another little thing (like the last one) that was bugging me so I took a bit of time to fix it.