(sb-ext:with-timeout 1 (read *standard-input*))
with-deadline also doesn't work from inside slime, but generally you should prefer that to with-timeout in production systems.
(with-timeout is not safe due to async unwinds at random points in the code (unless the entire codebase is prepared for that)).
hth,