Quoting AVKuznetsov <[EMAIL PROTECTED]>: > Hi, > > I made a macro for word completion via local dict server > and tried its stability for huge number of completions. > Following bugs were observed. > > a) The macro uses calltip to show a list of completions. > In a long list (~5000 lines) lines superimposes each other. > Seems, overflowed "line counter" drops to zero > and new lines are "printed" over previous ones.
You put 5000 lines into a calltip? Wow! > b) Creation of long lists completely hangs the system. The > cause for the hanging is described as follows. > > In the following simple > string = "" > for(i=0; i<N ; i++) > string = string "\n" i > > each iteration eats memory since new string is created. ie much more than the simple growth of the string we're interested would lead us to expect (all intermediate values are kept until the end of macro execution). > > Must I add this message to the BugsTracker? Do: it won't hurt. But add them as two separate bugs. The strings one is a known problem (as Steve LoBasso and I said in mails). I haven't checked whether either exists already as a bug though. Tony -- NEdit Develop mailing list - [email protected] http://www.nedit.org/mailman/listinfo/develop
