McCLIM, 1.2.8 An application displaying a data structure

igor denisov saufesma at gmail.com
Wed Nov 11 19:16:20 UTC 2020


(in-package :common-lisp-user)
(defpackage "APP"
(:use :clim :clim-lisp)
(:export "APP-MAIN"))

(define-application-frame superapp ()
  (
   ;(current-number :initform nil
					;:accessor current-number)
   )
(:pointer-documentation t)
  (:panes
   (app :application
	:display-time nil
	:height 400
	:width 600)
   (int :interactor
	:height 200
	:width 600))
  (:layouts
   (default (vertically ()
	     app int))))
; Evaluation aborted on #<UNBOUND-VARIABLE SUPERAPP {100A25ABA3}>.

How this can be or I missed something again.

The variable SUPERAPP is unbound.
   [Condition of type UNBOUND-VARIABLE]

best,
Igor.



More information about the mcclim-devel mailing list