aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2000-01-12 03:04:09 +0000
committerRichard M. Stallman2000-01-12 03:04:09 +0000
commit210bd5c986529d64641a0724ec582749a7f6505a (patch)
treefad74eb64ac1388643621358b17d207d902bb6e5
parent719177b33fadb91f42a6dd617cd6f6f3417558a8 (diff)
downloademacs-210bd5c986529d64641a0724ec582749a7f6505a.tar.gz
emacs-210bd5c986529d64641a0724ec582749a7f6505a.zip
(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 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."
263 263
264;;;###autoload 264;;;###autoload
265(defmacro def-edebug-spec (symbol spec) 265(defmacro def-edebug-spec (symbol spec)
266 "Set the edebug-form-spec property of SYMBOL according to SPEC. 266 "Set the `edebug-form-spec' property of SYMBOL according to SPEC.
267Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol 267Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
268\(naming a function), or a list." 268\(naming a function), or a list."
269 `(put (quote ,symbol) 'edebug-form-spec (quote ,spec))) 269 `(put (quote ,symbol) 'edebug-form-spec (quote ,spec)))
@@ -2123,6 +2123,7 @@ expressions; a `progn' form will be returned enclosing these forms."
2123(def-edebug-spec with-temp-file t) 2123(def-edebug-spec with-temp-file t)
2124(def-edebug-spec with-temp-buffer t) 2124(def-edebug-spec with-temp-buffer t)
2125(def-edebug-spec with-temp-message t) 2125(def-edebug-spec with-temp-message t)
2126(def-edebug-spec with-syntax-table t)
2126 2127
2127;; Anything else? 2128;; Anything else?
2128 2129