harlequin-common-lisp:augment-environment for LW 5.0?
I'm trying to port Arnesi to LW 5.0. Few obstacles here and there - I've gotten it down to where there's one in my way I can't solve: I'm guessing that Arnesi was originally meant to be compatible with a pre-5.0 Lispworks. I cannot find or figure out a replacement for harlequin-common-lisp:augment-environment I ask here, and not on the dev list for the project, as while this is an external library, the issue involves up-to-date lispworks details. Context: (defmethod augment-with-variable ((env lexical::environment) var) (harlequin-common-lisp:augment-environment env :variable (list var))) (defmethod augment-with-function ((env lexical::environment) fun) (harlequin-common-lisp:augment-environment env :function (list fun))) (defmethod augment-with-macro ((env lexical::environment) mac def) (harlequin-common-lisp:augment-environment env :macro (list (list mac def)))) (defmethod augment-with-symbol-macro ((env lexical::environment) symmac def) (harlequin-common-lisp:augment-environment env :symbol-macro (list (list symmac def)))) Thanks, Matt