From a5c09feee98cf38f9b8958bbafdf7ddb5afa913b Mon Sep 17 00:00:00 2001 From: minakaji Date: Fri, 24 Mar 2000 23:23:12 +0000 Subject: [PATCH] * pym.el: Define edebug specs for `static-if', `static-when', `static-unless', `static-condition-case', `static-defconst' and `static-cond'. --- ChangeLog | 6 ++++++ pym.el | 13 ++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index d0f4d47..9903d10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-03-25 Mikio Nakajima + + * pym.el: Define edebug specs for `static-if', `static-when', + `static-unless', `static-condition-case', `static-defconst' and + `static-cond'. + 2000-03-08 Akihiro Arisawa * poe.el (format-time-string): Fix problem when `format' contains "%d" diff --git a/pym.el b/pym.el index b8d45ad..692ffcd 100644 --- a/pym.el +++ b/pym.el @@ -268,13 +268,12 @@ Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol &rest (&rest sexp))) ;; edebug-spec for `static-*' macros are also defined here. -;; XXX: not defined yet. FIXME! -;; (def-edebug-spec static-if ...) -;; (def-edebug-spec static-when ...) -;; (def-edebug-spec static-unless ...) -;; (def-edebug-spec static-condition-case ...) -;; (def-edebug-spec static-defconst ...) -;; (def-edebug-spec static-cond ...) +(def-edebug-spec static-if if) +(def-edebug-spec static-when when) +(def-edebug-spec static-unless unless) +(def-edebug-spec static-condition-case condition-case) +(def-edebug-spec static-defconst defconst) +(def-edebug-spec static-cond cond) ;;; for backward compatibility. -- 1.7.10.4