Skip to content

Commit bce7f80

Browse files
authored
Merge pull request #26 from dkochmanski/master
Unfix ECL
2 parents 48e84cc + d338550 commit bce7f80

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: runtime/metaclass.lisp

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@
1212
;;; Class hierarchy
1313

1414
(defmacro maybe-eval-always (&body body)
15-
;; ECL needs to see the VALIDATE-SUPERCLASS methods
16-
#+(or ecl lispworks)
15+
#+ecl
16+
;; ECL may need to see the VALIDATE-SUPERCLASS methods.
17+
(if (<= ext:+ecl-version-number+ 160103)
18+
`(eval-when (compile load eval) ,@body)
19+
`(progn ,@body))
20+
#+lispworks
1721
`(eval-when (compile load eval) ,@body)
1822
#-(or ecl lispworks)
1923
`(progn ,@body))

0 commit comments

Comments
 (0)