aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2000-01-12 03:04:09 +0000
committerRichard M. Stallman <[email protected]>2000-01-12 03:04:09 +0000
commit210bd5c986529d64641a0724ec582749a7f6505a (patch)
treefad74eb64ac1388643621358b17d207d902bb6e5
parent719177b33fadb91f42a6dd617cd6f6f3417558a8 (diff)
(with-syntax-table): Add a def-edebug-spec.
-rw-r--r--lisp/emacs-lisp/edebug.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 44df428d06..1b3fdab1a4 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?