Function: trace-function-background

trace-function-background is an autoloaded, interactive and byte-compiled function defined in trace.el.gz.

Signature

(trace-function-background FUNCTION &optional BUFFER CONTEXT)

Documentation

Trace calls to function FUNCTION, quietly.

This is like trace-function-foreground, but without popping up the output buffer or changing the window configuration.

Probably introduced at or before Emacs version 24.4.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/trace.el.gz
;;;###autoload
(defun trace-function-background (function &optional buffer context)
  "Trace calls to function FUNCTION, quietly.
This is like `trace-function-foreground', but without popping up
the output buffer or changing the window configuration."
  (interactive (trace--read-args "Trace function in background"))
  (trace-function-internal function buffer t context))