* pym.el: Define edebug specs for `static-if', `static-when',
authorminakaji <minakaji>
Fri, 24 Mar 2000 23:23:12 +0000 (23:23 +0000)
committerminakaji <minakaji>
Fri, 24 Mar 2000 23:23:12 +0000 (23:23 +0000)
`static-unless', `static-condition-case', `static-defconst' and
`static-cond'.

ChangeLog
pym.el

index d0f4d47..9903d10 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-03-25  Mikio Nakajima  <minakaji@osaka.email.ne.jp>
+
+       * 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  <ari@atesoft.advantest.co.jp>
 
        * poe.el (format-time-string): Fix problem when `format' contains "%d"
diff --git a/pym.el b/pym.el
index b8d45ad..692ffcd 100644 (file)
--- 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.