Gmane
From: Paul Werkowski <pw <at> snoopy.mv.com>
Subject: Infinite loop in McCLIM
Newsgroups: gmane.lisp.mcclim.devel
Date: 2005-12-09 15:33:16 GMT (2 years, 39 weeks, 15 hours and 2 minutes ago)
The attached program works the same in McCLIM and Lispworks CLIM,
except McCLIM gets into an infinite loop (CMUCL latest) unless
incremental-redisplay
is enabled. The program just wants its displayed output to track resizing
the frame
from the window manager.

The attachment should run correctly. But then comment out the
:incremental-redisplay
as shown below and trouble is at hand.

(defclass test-pane (application-pane)
  ()
  (:default-initargs
   :display-function 'tpdf
   ;;; YIKES - in McCLIM; without this, infinite loop!!
   ; :incremental-redisplay t
   ; :display-time :command-loop
   ))

;;;
Paul