[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: (BUG LISPM) at MIT-AI
- From: XCONOS at MIT-AI (Alec Destry)
- Date: Mon ,22 Sep 80 00:16:00 EDT
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.