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

[REBOL] Re: Preventing evaluation of text in an area

From: brett::codeconscious::com at: 7-Aug-2002 23:19

Hi Thorsten,
> i have an area containig some text. When i want to save that text to a
file
> with fo example" save %mytext.txt area/text" it seems that rebol is > evaluating the text, because i get an Invalid word error whent the text
contains words
> like "left", "in" etc.. > > Any ideas how to prevent that?
REBOL does not evaluate the text as you describe. Your program probably has a simple error in logic, or perhaps you accidently redefined SAVE. Maybe you are LOADing or DOing the area text in an action function on the area. It shouldn't be too hard to track down what the problem is by using PROBE. For example try: save %mytext.txt PROBE area/text and see what the result is. Regards, Brett.