diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-07-09 02:00:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-07-09 02:00:46 +0000 |
commit | 21662bd3eb406be1962d28a5814567045bafce29 (patch) | |
tree | 17c8d705f9ed364726ac9b7f14ea0ccc181027f5 /lisp/emacs-lisp | |
parent | 8285ccd2e1abf08f829f67d93375a2df4e38a859 (diff) | |
download | emacs-21662bd3eb406be1962d28a5814567045bafce29.tar.gz emacs-21662bd3eb406be1962d28a5814567045bafce29.tar.bz2 emacs-21662bd3eb406be1962d28a5814567045bafce29.zip |
(def-edebug-spec): Moved to subr.el.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index d0be3a02f65..7e4972194bb 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -235,13 +235,6 @@ If the result is non-nil, then break. Errors are ignored." ;;; Form spec utilities. -;;;###autoload -(defmacro def-edebug-spec (symbol spec) - "Set the `edebug-form-spec' property of SYMBOL according to SPEC. -Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol -\(naming a function), or a list." - `(put (quote ,symbol) 'edebug-form-spec (quote ,spec))) - (defmacro def-edebug-form-spec (symbol spec-form) "For compatibility with old version." (def-edebug-spec symbol (eval spec-form))) |