diff options
author | Richard M. Stallman <rms@gnu.org> | 2000-01-12 03:04:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2000-01-12 03:04:09 +0000 |
commit | 210bd5c986529d64641a0724ec582749a7f6505a (patch) | |
tree | fad74eb64ac1388643621358b17d207d902bb6e5 /lisp/emacs-lisp | |
parent | 719177b33fadb91f42a6dd617cd6f6f3417558a8 (diff) | |
download | emacs-210bd5c986529d64641a0724ec582749a7f6505a.tar.gz emacs-210bd5c986529d64641a0724ec582749a7f6505a.tar.bz2 emacs-210bd5c986529d64641a0724ec582749a7f6505a.zip |
(with-syntax-table): Add a def-edebug-spec.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 44df428d068..1b3fdab1a4b 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -263,7 +263,7 @@ If the result is non-nil, then break. Errors are ignored." ;;;###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 @@ expressions; a `progn' form will be returned enclosing these forms." (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? |