Subject: Re: Dangling Closing Parentheses vs. Stacked Closing Parentheses
From: Erik Naggum <erik@naggum.no>
Date: 2000/03/28
Newsgroups: comp.lang.lisp
Message-ID: <3163274599898094@naggum.no>

* "Anthony Cartmell" <AJCartmell@csi.com>
| Sorry for the "newbie" question, but I thought that the indentation was
| based on the list structure, and not the other way round.

  well, this gets a little complicated.  the indentation is automatically
  produced for you based on the list structure by the editor.  the list
  structure, however, becomes visually apparent to us humans through
  indentation.  new Lispers look at the list structure and think they
  understand the indentation.  old Lispers look at the indentation and
  understand the list structure.  new Lispers count parentheses and swear.
  old Lispers reindent their code and immediately spot mistakes and just
  clean them up.  the whole Lisp enlightenment experience is about making a
  fundamental swap between syntax and indentation.  (at least one language
  has made this switch permanent: python.  I'm not sure this is a good
  thing.)

| If the parens were based on the indentation then we wouldn't even need to
| use them.

  this is very naive.  _some_ redundancy is a fundamental characteristic of
  _all_ successful communication, between computers as well as humans.

| My whole reason for using dangling parens in my code is to show which
| open-paren each close-paren closes by its indentation.  I don't
| understand why this is such a bad layout style.

  that's because you have never let yourself get immersed in indentation.
  you don't need to see the parentheses.  (if you start seeing fnords,
  alert your local illuminati.)

#:Erik