[REBOL] Re: Assorted bugs?

2002-05-07 Thread [EMAIL PROTECTED]
Hi all, about text-list, I found this problem (I think it is a problem!): view layout [text-list "a" "b" "a"] If a user select the first "a" text-list even select the third "a". It should be a good thing to manage text-list with an index and not directly with the text (maybe creating a new

[REBOL] Re: Assorted bugs?

2002-05-06 Thread philb
Hi Anton, now this is strange Example where as-is works ... REBOL [] files: copy [] foreach file read %. [ insert tail files reform ["o^-" file] ] view center-face layout [text-list data files as-is] view center-face layout [text-list data files] Example that doesnt wo

[REBOL] Re: Assorted bugs?

2002-05-06 Thread Anton
I am pretty sure I reported this many months ago. RT keep their own bug database but they keep it private for now. Anton. > 3. alt-down SLOW under windows (but OK under Linux) > Ashley -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the

[REBOL] Re: Assorted bugs?

2002-05-06 Thread Anton
That didn't seem to work for me. ie. The following two lines show the same error: view center-face layout [text-list data files] view center-face layout [text-list data files as-is] Anton. > Hi Ashley, > > Work around for #2 is to use the AS-IS keyword. > i.e. change the text-l