Show
Ignore:
Timestamp:
2006年07月16日 08時36分52秒 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/emacs-lisp/edebug.el

    r4058 r4111  
    235235 
    236236;;; Form spec utilities. 
    237  
    238 ;;;###autoload 
    239 (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 symbol 
    242 \(naming a function), or a list." 
    243   `(put (quote ,symbol) 'edebug-form-spec (quote ,spec))) 
    244237 
    245238(defmacro def-edebug-form-spec (symbol spec-form) 
     
    34273420     (t 
    34283421      (let ((loc (find-function-noselect func))) 
     3422        (unless (cdr loc) 
     3423          (error "Could not find the definition in its file")) 
    34293424        (with-current-buffer (car loc) 
    34303425          (goto-char (cdr loc))