Function: trace-values

trace-values is an autoloaded and byte-compiled function defined in trace.el.gz.

Signature

(trace-values &rest VALUES)

Documentation

Helper function to get internal values.

You can call this function to add internal values in the trace buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/trace.el.gz
;;;###autoload
(defun trace-values (&rest values)
  "Helper function to get internal values.
You can call this function to add internal values in the trace buffer."
  (unless inhibit-trace
    (with-current-buffer (get-buffer-create trace-buffer)
      (goto-char (point-max))
      (insert
       (trace-entry-message
        'trace-values trace-level values "")))))