aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2006-07-09 02:00:46 +0000
committerRichard M. Stallman2006-07-09 02:00:46 +0000
commit21662bd3eb406be1962d28a5814567045bafce29 (patch)
tree17c8d705f9ed364726ac9b7f14ea0ccc181027f5 /lisp
parent8285ccd2e1abf08f829f67d93375a2df4e38a859 (diff)
downloademacs-21662bd3eb406be1962d28a5814567045bafce29.tar.gz
emacs-21662bd3eb406be1962d28a5814567045bafce29.zip
(def-edebug-spec): Moved to subr.el.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/edebug.el7
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."
235 235
236;;; Form spec utilities. 236;;; Form spec utilities.
237 237
238;;;###autoload
239(defmacro def-edebug-spec (symbol spec)
240 "Set the `edebug-form-spec' property of SYMBOL according to SPEC.
241Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
242\(naming a function), or a list."
243 `(put (quote ,symbol) 'edebug-form-spec (quote ,spec)))
244
245(defmacro def-edebug-form-spec (symbol spec-form) 238(defmacro def-edebug-form-spec (symbol spec-form)
246 "For compatibility with old version." 239 "For compatibility with old version."
247 (def-edebug-spec symbol (eval spec-form))) 240 (def-edebug-spec symbol (eval spec-form)))