Re: [Factor-talk] Headless Factor

2016-11-30 Thread Chris Double
On Thu, Dec 1, 2016 at 6:22 AM, John Benediktsson wrote: > I just removed the call to ``g_type_init``, which has been deprecated since > maybe glib 2.36. > > Want to give headless factor another try? That worked, thanks! -- http://bluishcoder.co.nz

Re: [Factor-talk] Headless Factor

2016-11-30 Thread John Benediktsson
I just removed the call to ``g_type_init``, which has been deprecated since maybe glib 2.36. Want to give headless factor another try? On Tue, Nov 29, 2016 at 4:59 PM, John Benediktsson wrote: > Looks like that's required by ``images.loader.gtk``. > > I guess "headless" still

Re: [Factor-talk] exporting man pages to text files with Factor

2016-11-30 Thread John Benediktsson
So, the pipe "|" and redirect ">" are shell concepts, so your first and second one fail because those aren't understood by the Factor process launcher. You can, however, run this as a pipeline: :: man-page>txt ( cmd -- result ) { { "man" cmd } { "col" "-bx" } [ contents ] }