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

[REBOL] Re: send&email insanity

From: gscottjones:mchsi at: 7-Mar-2003 8:01

From: "Ladislav Mecir"
> ...please replace "receiver" by "recipient" in my > previous mail and excuse my bad english.
You english is fine. No problem.
> Scott, after the fix, even the: > > if none? header-obj/to [ > header-obj/to: tmp: make string! 20 > if show [ > foreach email address [repend tmp [email ", "]] > clear back back tail tmp > ] > ] > > can be changed to: > > if all [show none? header-obj/to] [ > header-obj/to: tmp: make string! 20 > foreach email address [repend tmp [email ", "]] > clear back back tail tmp > ]
Stepping through the function, I agree that logically this works and seems more stream-lined. Limited testing also shows it works. I decided not to submit this on the same feedback request, because I believe that it is better to keep a feedback to a very limited scope. The only side effect of leaving it as it is that REBOL generates a 20 character string space without then using it (if show is not specified). If there is a more harmful side effect, then perhaps it should be submitted separately. I guess the submission could reference the other feedback ticket for clarity. What do you think? (Given limited REBOL resources I am inclined to let it slide.) Respectfully, --Scott Jones