From: Richard M. Stallman Date: Sun, 9 Jul 2006 02:00:46 +0000 (+0000) Subject: (def-edebug-spec): Moved to subr.el. X-Git-Tag: emacs-pretest-22.0.90~1603 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=21662bd3eb406be1962d28a5814567045bafce29;p=emacs.git (def-edebug-spec): Moved to subr.el. --- 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)))