Incorrect parsing of import command when read from a file
When reading a madelaine file like the following:
import a.mdln
eval t
The parser operates in a greedy fashion and reads it as the command import a.mdln eval t
. This can be avoided by removing keywords from possible file paths, as it is done in other situations.