On Mon, 19 Dec 2011 at 19:33:21 -0500, David Rawson Couzelis wrote: > > I'd like to dedicate some time (maybe a lot of time) to Window > Maker. I'm a software developer. What can I do that would help the > project?
Code cleanup is welcome. Just read the code and you will see many possible cleanups (code that is never executed and things like that). There are some huge functions which could be made cleaner by calling smaller functions -- and you can also take the opportunity to get rid of CamelCased names as a side effect :-) Another thing is to look for unneeded #includes, and organize our .h files better (move function declarations out of .c files and put them in .h and things like that). You can also look at http://www.kroah.com/linux/talks/ols_2002_kernel_codingstyle_talk/html/ for some inspiration. Code cleanups are important and while doing them you can also find real bugs through review. -- To unsubscribe, send mail to [email protected].
