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

[REBOL] Re: This has to be a known text-list bug...

From: carl:cybercraft at: 17-Mar-2004 6:05

On 17-Mar-04, Carl Read wrote:
>>> layout [t: text-list "a b c" "a b c"] >>> probe t/data > ["a b c" "a b c"] > So how come the first string has had its extra spaces removed?!? > (Same result on View 1.2.1, 1.2.5 and 1.2.10.) And is there any > known fix for this?
Well, found a work-around for it...
>> layout [
[ t: text-list [ do [append t/data ["a b c" "a b c"]] [ ]
>> probe t/data
["a b c" "a b c"] Anyway, has this been fixed with the latest betas? It has to be a well-know bug, right? Oh yes, and this shows up the bug too... strings: [ "a b c" "d e f" "g h i" ] view layout [text-list data strings] -- Carl Read