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

* ds26@goldshoe.gte.com (Dorai Sitaram)
| Anyway, converting between the dangling and clumped styles is
| automatable.  An Elisp programmer should be able to implement the
| following pseudocode in a few minutes:
| 
| Dangling-to-clumped:
|   While there is a line with only right parens,
|   join that line with the previous line.  
|   Reindent.

  watch this code die a horrible flaming death:

(foo a                          ; mumble
     b                          ; frotz
     c                          ; fnord
     )

#:Erik