summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/trace.el
diff options
context:
space:
mode:
authorStephen Eglen <stephen@gnu.org>1998-04-05 18:26:32 +0000
committerStephen Eglen <stephen@gnu.org>1998-04-05 18:26:32 +0000
commit666b94132b9d785b4ec6f0ecbfa451168134d150 (patch)
tree86d786fd96dcb21413135c75d5e5830e66c28dbe /lisp/emacs-lisp/trace.el
parent3c14708ccfb71af5ea2324f71955480413402b92 (diff)
downloademacs-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.el11
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)