Indenting Scheme Programs

If you make a point of following these rules, you will quickly get used to them and they will allow you to quickly parse even very complicated programs. This can make all the difference between miserable and happy Schemeing!

Emacs follows these rules.

The cardinal rules of indentation

I will take 10% off your assignment grade for not following these rules.
  1. A line should be indented past the position of the parenthesis that starts the list to which the beginning of the line is an element.

  2. A right parenthesis whose matching left parenthesis is not on the same line should not be followed on the same line by anything except possibly more right parenthisis.
    1. Ok: (((x y)) z)
    2. Wrong: (((x y)) z)
  3. If a line begins at the same indentation level as the previous line, it should be indented the same amount.

  4. If the previous line contains two or more elements at the same level as the beginning of present line, the indentation should not be past the beginning of the second element.

Room for variation

As the ok examples show, these rules still allow a lot of freedom. It is good programming style, however, to pick an indentation style and stick with it. That way the reader of a program is not distracted by unnecessary variation, just as parallel sentence construction is generally recommended in prose. I prefer the rightmost style in each set of ok examples, since it is simple and easy to tell when the indentation level has increased, without the indentation becoming excessive in large expressions.

There are no absolute rules for how much to put on a line. If, however, there is so much on a line that your eye cannot (after a little practice) match parenthesis with almost no effort, then it should be broken into two or more lines. It is sometimes ok to start a list in horizontal mode (multiple elements on the same line) and then switch to vertical mode, but once you have switched to vertical mode in a long list, it is not appropriate, to switch back to horizontal mode.

Emacs makes good indentation easy

In scheme-mode the emacs editor will automatically indent the new line in good style when you press return, and it may be used to repair indentation that is messed up through program modification. There is no excuse for bad indentation. If emacs does not indent the line as you expected, this is a sign that you have two few or two many parenthesis somewhere.

sushil@cs.unr.edu
Last modified: Sun Aug 22 14:36:27 PDT 1999