diff options
author | Stephen Eglen <stephen@gnu.org> | 1998-04-05 18:26:32 +0000 |
---|---|---|
committer | Stephen Eglen <stephen@gnu.org> | 1998-04-05 18:26:32 +0000 |
commit | 666b94132b9d785b4ec6f0ecbfa451168134d150 (patch) | |
tree | 86d786fd96dcb21413135c75d5e5830e66c28dbe /lisp/emacs-lisp/trace.el | |
parent | 3c14708ccfb71af5ea2324f71955480413402b92 (diff) | |
download | emacs-666b94132b9d785b4ec6f0ecbfa451168134d150.tar.gz emacs-666b94132b9d785b4ec6f0ecbfa451168134d150.tar.bz2 emacs-666b94132b9d785b4ec6f0ecbfa451168134d150.zip |
Customized.
Diffstat (limited to 'lisp/emacs-lisp/trace.el')
-rw-r--r-- | lisp/emacs-lisp/trace.el | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/trace.el b/lisp/emacs-lisp/trace.el index 40008e29a19..d066f7d82f3 100644 --- a/lisp/emacs-lisp/trace.el +++ b/lisp/emacs-lisp/trace.el @@ -164,9 +164,16 @@ (require 'advice) +(defgroup trace nil + "Tracing facility for Emacs Lisp functions" + :prefix "trace-" + :group 'lisp) + ;;;###autoload -(defvar trace-buffer "*trace-output*" - "*Trace output will by default go to that buffer.") +(defcustom trace-buffer "*trace-output*" + "*Trace output will by default go to that buffer." + :type 'string + :group 'trace) ;; Current level of traced function invocation: (defvar trace-level 0) |