

   TTrraaccee aallll ccaallllss ttoo aa ffuunnccttiioonn..

        trace(fun)
        untrace(fun)

   AArrgguummeennttss::

        fun: any interpreted function (not quoted).

   DDeessccrriippttiioonn::

        These are both in very primitive form.  If `trace' is
        called the function named is marked and each time it is
        entered the call is printed on the console.  To stop
        tracing a function use `untrace'.

   SSeeee AAllssoo::

        `debug'.

   EExxaammpplleess::

        trace(names)
        data.frame(x=1:2, y=3:4)
        untrace(names)

