Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Some very very strange behaviors

From: antonr:lexicon at: 30-Sep-2004 17:11

It can be made into a workaround :) if you wrap your read like this: ----------------------------- rebol/options/quiet: on trace/net on orig-print: :print orig-prin: :prin print: none prin: none read http://www.yahoo.com print: :orig-print prin: :orig-prin trace/net off ----------------------------- net-utils/net-log is the one which produces all the output to the console, and it uses PRIN and PRINT (via PROBE). (mold get in net-utils 'net-log) ; <- have a look. I'd like to know if you get any more strangeness using this technique. Anton.