From: minakaji Date: Fri, 24 Mar 2000 23:23:12 +0000 (+0000) Subject: * pym.el: Define edebug specs for `static-if', `static-when', X-Git-Tag: emacs-21_0_90-apel-10_2-1~9 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=a5c09feee98cf38f9b8958bbafdf7ddb5afa913b;p=elisp%2Fapel.git * pym.el: Define edebug specs for `static-if', `static-when', `static-unless', `static-condition-case', `static-defconst' and `static-cond'. --- 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.