From: unbewusst.sein@... (=?ISO-8859-1?Q?Une_B=E9v?= =?ISO-8859-1?Q?ue?=) Date: 2007-03-20T21:20:07+09:00 Subject: [MacOS X] [BUG]Bus Error i'm using ruby with libxml and libxslt to transfom an xhtml file into an xbel one thru xslt. It seems (not deeply verified) the transform itself works but i get the following error message : $ ./fir2xbel.rb ./fir2xbel.rb:23: [BUG] Bus Error ruby 1.8.5 (2006-08-25) [powerpc-darwin8.8.0] the whole script could be resumed to : #! /usr/bin/env ruby -wx require 'xml/libxml' require 'xml/libxslt' xslt=XML::XSLT.file() xslt.doc=XML::Document.file() s=xslt.parse s.apply f=File.open(,'w') f.puts s notice the -wx arg to Ruby. where could i search for such an error ?