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

[REBOL] Re: Odd behavior using copy/part?

From: rebol:techscribe at: 4-Jan-2001 0:25

Hi Jeff, your problem is the following line (5 lines from the bottom of the code your included in your email):
> copy: copy/part header 1
Here you are setting the word copy to the result of copy/part header 1 If you should encounter a problem like this again the easiest way of detecting it is by starting your code off with the function protect-system This will result in an error message when you attempt to set one of REBOL's predefined words to a new value, as is the case here. Pretty sure this helps ;-) Elan Jeff Rubin wrote: