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

[no subject]



In system 44.1, with microcode 692, on LISP Machine Six:

(defflavor foo ((foo-value nil))() :initable-instance-variables)

(defflavor foo1 ()(foo)
  (:default-init-plist :foo-value 1))

(setq foo-instance (instantiate-flavor 'foo1 nil))
(<- foo-instance ':eval-inside-yourself 'foo-value) => nil

shouldn't foo-value be 1 because of the default-init-plist in the flavor definition of
foo1.