I want to accept something in a window but whatever I accept gets echoed in the window (see below for example code). How do I stop the echoing? (This is in MAC CLIM). -Thanks, David (in-package clim-user) (setq root (open-root-window :mcl)) (setq w (open-window-stream :parent root)) (present 3 'integer :stream w) (accept 'integer :stream w :prompt nil) 0,,