You could use continuation-passing:
(define (frob0 x k)
(cond ((foo? x)
(k x))
((bar? x)
(frob0 (f g x)
(lambda (y)
(k (macerate (f x) y))))
((thud? x)
(frob0 (g x)
(lambda (y)
(frob0 (h x)
(lambda (z)
(k (frobnicate y z))))))))
(define (frob x)
(frob0 x (lambda (y) y))
This will not make things easier to understand :-(
(I assume here that (macerate (f x) (frob x)) was a typo, since it leads to an infinite recursion, and that you actually meant (macerate (frob (f x))).
