CLIM mail archive

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

Re: [spr9501] with-output-as-presentation




There seems to be a bug with setf'ing the stream-output-history.
As a workaround try specifying the history as an initarg in the pane definition.

(clim::define-application-frame test ()
    ()
  (:panes  
     (card-pane :application
           :display-after-commands nil
           :display-function 'draw-map
            :output-record (make-instance 'clim::STANDARD-SEQUENCE-OUTPUT-HISTORY)
	))
  (:layouts (default (vertically ()
		(:fill card-pane)
		)))
  )

-chris


Main Index | Thread Index