On Wed, Jul 7, 2010 at 1:37 PM, Ville M. Vainio <[email protected]> wrote: > Analyzed a core, and it seems it does crash in delete_aspell_config.
Thanks for this work. An attempted fix is on the trunk at rev 3180. It (continues) to work on the PC. Not tested where it actually matters :-) There are two calls to this method: aspell.delete_aspell_config(c_int(sc)) and aspell.delete_aspell_config(c_void_p(sc)) >From googling, I suspect that c_void_p is the proper type: the param is actually a Config *, so I changed c_int(sc) to c_void_p(sc). Please tell me how this works for you. Edward -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en.
