Changeset 4111 for trunk/lisp/emacs-lisp/edebug.el
- Timestamp:
- 2006年07月16日 08時36分52秒 (2 years ago)
- Files:
-
- trunk/lisp/emacs-lisp/edebug.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/emacs-lisp/edebug.el
r4058 r4111 235 235 236 236 ;;; Form spec utilities. 237 238 ;;;###autoload239 (defmacro def-edebug-spec (symbol spec)240 "Set the `edebug-form-spec' property of SYMBOL according to SPEC.241 Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol242 \(naming a function), or a list."243 `(put (quote ,symbol) 'edebug-form-spec (quote ,spec)))244 237 245 238 (defmacro def-edebug-form-spec (symbol spec-form) … … 3427 3420 (t 3428 3421 (let ((loc (find-function-noselect func))) 3422 (unless (cdr loc) 3423 (error "Could not find the definition in its file")) 3429 3424 (with-current-buffer (car loc) 3430 3425 (goto-char (cdr loc))
