Re: survey: indentation declaration style

2009-05-11 Thread Linas Vepstas
Hi, 2009/5/11 Thien-Thi Nguyen : > I've tentatively adopted the following indentation declaration style. I do something similar, except that, for clauses that do not fit on one line, I put the closing paren on a new line. This allows for much easier visual inspection; also, I find it easier to

Re: survey: indentation declaration style

2009-05-11 Thread Andreas Rottmann
Thien-Thi Nguyen writes: > I've tentatively adopted the following indentation declaration style. > Non-coincidentally, it resembles that used for Emacs Lisp code. > The #; represents pan-Scheme (R7RS?) wishful thinking. > > (define-macro (forse precond . corpo) > ;;#;(declare (indent 1)) >

survey: indentation declaration style

2009-05-11 Thread Thien-Thi Nguyen
I've tentatively adopted the following indentation declaration style. Non-coincidentally, it resembles that used for Emacs Lisp code. The #; represents pan-Scheme (R7RS?) wishful thinking. (define-macro (forse precond . corpo) ;;#;(declare (indent 1)) `(or (and-let* ,precond (list ,@corp