Here's the code if the list in the original post was too cryptic. None of 
the items beginning with "cc" show up in the stack trace by name -- m_bind 
shows up instead.

(defn ee [] (show-stack))

(def dd (fn [s] [ (show-stack) s]))

(def cc2
  (with-monad sim-m (domonad [_# dd]
                             4)))
(def cc1
  (with-monad sim-m (domonad [_# cc2]
                             5)))
(def cc
  (with-monad sim-m (domonad [_# cc1]
                             6)))
(def bb cc)

(defn aa [] (bb {}))

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

Reply via email to