From 5c69396fb384cf65ae55673a46d19d2012e4e5e6 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Tue, 13 Mar 2018 13:28:35 -0700 Subject: [PATCH] tools.cocoa: fix use of each-method-in-class. --- basis/tools/cocoa/cocoa.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basis/tools/cocoa/cocoa.factor b/basis/tools/cocoa/cocoa.factor index 9dd1895a68..fd0c768a8f 100644 --- a/basis/tools/cocoa/cocoa.factor +++ b/basis/tools/cocoa/cocoa.factor @@ -1,7 +1,7 @@ ! Copyright (C) 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. -USING: arrays cocoa.messages cocoa.runtime combinators -prettyprint combinators.smart ; +USING: cocoa.messages cocoa.runtime combinators +combinators.smart kernel prettyprint ; IN: tools.cocoa : method. ( method -- ) @@ -15,4 +15,4 @@ IN: tools.cocoa ] output>array . ; : methods. ( class -- ) - [ method. ] each-method-in-class ; + [ nip method. ] each-method-in-class ;