From aa8fe942eeb849bb44dccf151c670ea9e30ee063 Mon Sep 17 00:00:00 2001 From: "chris.double" Date: Fri, 25 Aug 2006 03:16:10 +0000 Subject: [PATCH] remove 'compiled' from x11 so it works with current factor --- contrib/x11/x.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/x11/x.factor b/contrib/x11/x.factor index 23b04d5a75..671bf04a09 100644 --- a/contrib/x11/x.factor +++ b/contrib/x11/x.factor @@ -415,7 +415,7 @@ dpy get "XEvent" dup >r XNextEvent drop r> ; SYMBOL: error-handler-quot : error-handler-callback ( -- xt ) "void" { "Display*" "XErrorEvent*" } -[ error-handler-quot get call ] alien-callback ; compiled +[ error-handler-quot get call ] alien-callback ; : set-error-handler ( quot -- ) error-handler-quot set error-handler-callback XSetErrorHandler drop ;