# HG changeset patch # User Richard M. Stallman # Date 947646249 0 # Node ID 6a6b75706812a36e359c0757b62ec55f11c3581c # Parent 1e2af531f30814a88a3a52f67d404daf5ccc6598 (with-syntax-table): Add a def-edebug-spec. diff -r 1e2af531f308 -r 6a6b75706812 lisp/emacs-lisp/edebug.el --- a/lisp/emacs-lisp/edebug.el Tue Jan 11 22:18:47 2000 +0000 +++ b/lisp/emacs-lisp/edebug.el Wed Jan 12 03:04:09 2000 +0000 @@ -263,7 +263,7 @@ ;;;###autoload (defmacro def-edebug-spec (symbol spec) - "Set the edebug-form-spec property of SYMBOL according to 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))) @@ -2123,6 +2123,7 @@ (def-edebug-spec with-temp-file t) (def-edebug-spec with-temp-buffer t) (def-edebug-spec with-temp-message t) +(def-edebug-spec with-syntax-table t) ;; Anything else?