Object numbers and object names work with the matching routines, but $ notated names don't appear to.
Logged In: YES user_id=15747
I discovered that this is a core error related to some renumbering of the order of the variable type definitions for Var. Some sloppy code in match_env uses an integer for type comparison:
14: if (what == E_VARNF || typeof(what) != 2) 15: return #-1; 16: else
This must be fixed in the final distributed core.
Log in to post a comment.
Logged In: YES
user_id=15747
I discovered that this is a core error related to some
renumbering of the order of the variable type definitions
for Var. Some sloppy code in match_env uses an integer for
type comparison:
14: if (what == E_VARNF || typeof(what) != 2)
15: return #-1;
16: else
This must be fixed in the final distributed core.