From 500b97708fc5522792d7b7daadee54fe8818e654 Mon Sep 17 00:00:00 2001 From: slava Date: Fri, 18 Aug 2006 05:17:23 +0000 Subject: [PATCH] Fix stack effect declaration --- TODO.FACTOR.txt | 3 ++- library/ui/cocoa/services.factor | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/TODO.FACTOR.txt b/TODO.FACTOR.txt index 44d0fdac6f..6655da823f 100644 --- a/TODO.FACTOR.txt +++ b/TODO.FACTOR.txt @@ -12,7 +12,6 @@ - roundoff is still not quite right with tracks - fix top level window positioning - fix contribs: boids, automata -- [ [ dup call ] dup call ] infer hangs - graphical module manager tool - see if alien calls can be made faster - sometimes darcs get fails with the httpd @@ -99,6 +98,8 @@ + compiler/ffi: +- [ [ dup call ] dup call ] infer hangs +- callstack overflow when compiling mutually recursive inline words - test what is done in the case of an invalid declaration on an inline recursive - ppc64 backend diff --git a/library/ui/cocoa/services.factor b/library/ui/cocoa/services.factor index 7e65c8659b..7f95435abd 100644 --- a/library/ui/cocoa/services.factor +++ b/library/ui/cocoa/services.factor @@ -7,7 +7,7 @@ IN: cocoa USING: alien gadgets-presentations io kernel namespaces objc parser prettyprint styles ; -: pasteboard-error ( error str -- f ) +: pasteboard-error ( error -- f ) "Pasteboard does not hold a string" 0 swap rot set-void*-nth f ;