Coding Style
------------

To make code written for MrProject look and act in a predictable way,
we follow a set of guidelines that specify some details of how we 
write code. To start, we follow all the guidelines outlined in the
GNOME Programming Guidelines, found at:

http://developer.gnome.org/doc/guides/programming-guidelines/

We use the most-recommended coding style from the GNOME Programming
Guidelines. This means that we use the Linux kernel brace style with
8-character tabs (not the GNU brace style), we put spaces before
the parentheses that introduce function argument lists, we put the
braces that open the block for an if statement on the same line as the
if statement (part of Linux kernel brace style).

