From 81cd51ae8590efb9da3905a3f5101e41f78b55cc Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Mon, 14 Jan 2008 19:11:32 -0500 Subject: [PATCH] multi-methods load fix --- extra/multi-methods/multi-methods.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/multi-methods/multi-methods.factor b/extra/multi-methods/multi-methods.factor index 1f260d94eb..827d64b95f 100755 --- a/extra/multi-methods/multi-methods.factor +++ b/extra/multi-methods/multi-methods.factor @@ -3,7 +3,7 @@ USING: kernel math sequences vectors classes combinators arrays words assocs parser namespaces definitions prettyprint prettyprint.backend quotations arrays.lib -debugger io ; +debugger io compiler.units ; IN: multi-methods TUPLE: method loc def ; @@ -217,5 +217,5 @@ syntax:M: method-spec synopsis* dup definer. unclip pprint* pprint* ; -syntax:M: method-spec forget +syntax:M: method-spec forget* unclip [ delete-at ] with-methods ;