CLIM mail archive

[Prev][Next][Index][Thread]

Watch out for EVENT class in CLIM



Apparently, if you are like me and too lazy to code with package
prefixes there is an Event class in CLIM that I hit accidentally
when I wrote my own (defclass event  ...) in my package. Make sure
your defpackage form shadows that sucker! E.g. In my Allegro world ...


(defpackage my-package
  (:use clim clim-lisp)
  (:import-from excl compile-system load-system)
  (:shadow time step event))

;I also have time and step classes that the excl package in Allegro contains


Main Index | Thread Index