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

[REBOL] bug - Recursive layout

From: arolls::bigpond::net::au at: 11-Dec-2000 19:45

Hello, I have found a bug (I think) in REBOL/View 0.10.38.3.1 28-Nov-2000 running on win2k. doing this function f: does [view layout [button "refresh" [unview/all f]]] and pressing "refresh" 41 times leads to a program error and rebol.exe is shut down. (Windows says it's generating an error log but I don't know where it stores it yet.) Actually, isn't it related to this stack overflow problem?
>> f: does [n: n - 1 if n > 0 [do f]] >> n: 1107 f
== none
>> n: 1108 f
** Internal Error: Stack overflow. ** Where: n: n - 1 if Anton.