Subj : How and where can I upload a change to the SpiderMonkey source-code? To : netscape.public.mozilla.jseng From : "Thorsten R" Date : Mon Feb 03 2003 03:24 am Hello Everybody, I made a change to the SpiderMonkey C-Sources which was important for me, otherwise SpiderMonkey wouldn't have been usable. I changed the JSPropertySpec.TinyID member from type int8 (8-bit) to long, so I can pass a pointer as attribute, which is required for my task. I also changed all related functions and inner structures, like the JSScopeProperty structure, to handle the long type. A long should always be sufficient to hold a pointer value, even on 64-bit machines, however, it raises the question how JSVal will be handled on 64-bit machines, it must be expanded to 64-bit, but is this already done in the source code? But my main question is, how and where can I contribute my change to the global sources and to the public? I think it was a big design mistake to declare the only attribute - one can pass from an application to a JS property - of type int8, and I'm convinced that the change I made is reasonable and usable for the whole community. Please let me know. Regards Thorsten Radde .