> The bracket under the letfn is indented a couple spaces more than I'd
> probably prefer, but that's not really what bothers me.  The bodies of
> the functions are indented WAY too much.

Incidentally, VimClojure gets the second part wrong, too (though it  
gets the first correct).

Indenting 4 additional spaces on every line to try to trick Google  
Groups, the output is:

     (defn test-letfn [n]
       (letfn
         [(function1 [a b]
                     (+ (function2 a) sqr-n))
          (function2 [a]
                     (* 2 3))]
         (function1 8 10)))


I think it should be

     (defn test-letfn [n]
       (letfn
         [(function1 [a b]
            (+ (function2 a) sqr-n))
          (function2 [a]
            (* 2 3))]
         (function1 8 10)))

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to